pytest-lazy-fixture: init at 0.6.3
This commit is contained in:
parent
0c960262d1
commit
4594022ec3
@ -0,0 +1,30 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pytest-lazy-fixture";
|
||||||
|
version = "0.6.3";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1b0hmnsxw4s2wf9pks8dg6dfy5cx3zcbzs8517lfccxsfizhqz8f";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest
|
||||||
|
];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Helps to use fixtures in pytest.mark.parametrize";
|
||||||
|
homepage = "https://github.com/pytest-dev/pytest-repeat";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ tobim ];
|
||||||
|
};
|
||||||
|
}
|
@ -2332,6 +2332,8 @@ in {
|
|||||||
|
|
||||||
pytest-isort = callPackage ../development/python-modules/pytest-isort { };
|
pytest-isort = callPackage ../development/python-modules/pytest-isort { };
|
||||||
|
|
||||||
|
pytest-lazy-fixture = callPackage ../development/python-modules/pytest-lazy-fixture { };
|
||||||
|
|
||||||
pytest-mpl = callPackage ../development/python-modules/pytest-mpl { };
|
pytest-mpl = callPackage ../development/python-modules/pytest-mpl { };
|
||||||
|
|
||||||
pytest-mock = callPackage ../development/python-modules/pytest-mock { };
|
pytest-mock = callPackage ../development/python-modules/pytest-mock { };
|
||||||
|
Loading…
Reference in New Issue
Block a user