nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

pythonPackages.pytest-lazy-fixture: use pytestCheckHook

+2 -6
+2 -6
pkgs/development/python-modules/pytest-lazy-fixture/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , pytest 4 + , pytestCheckHook 5 5 }: 6 6 7 7 buildPythonPackage rec { ··· 14 14 }; 15 15 16 16 checkInputs = [ 17 - pytest 17 + pytestCheckHook 18 18 ]; 19 - 20 - checkPhase = '' 21 - pytest 22 - ''; 23 19 24 20 meta = with lib; { 25 21 description = "Helps to use fixtures in pytest.mark.parametrize";