pytest-lazy-fixture: init at 0.6.3

wip/yesman
Tobias Mayer 4 years ago
parent 0c960262d1
commit 4594022ec3
No known key found for this signature in database
GPG Key ID: F8657E90819A1298
  1. 30
      pkgs/development/python-modules/pytest-lazy-fixture/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -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-lazy-fixture = callPackage ../development/python-modules/pytest-lazy-fixture { };
pytest-mpl = callPackage ../development/python-modules/pytest-mpl { };
pytest-mock = callPackage ../development/python-modules/pytest-mock { };

Loading…
Cancel
Save