diff --git a/pkgs/development/python-modules/pytest-fixture-config/default.nix b/pkgs/development/python-modules/pytest-fixture-config/default.nix index 852a1e5fe05..df700526d1b 100644 --- a/pkgs/development/python-modules/pytest-fixture-config/default.nix +++ b/pkgs/development/python-modules/pytest-fixture-config/default.nix @@ -1,5 +1,5 @@ { stdenv, buildPythonPackage, fetchPypi -, pytest, coverage, virtualenv, pytestcov, six }: +, setuptools-git, pytest, six }: buildPythonPackage rec { pname = "pytest-fixture-config"; @@ -10,11 +10,14 @@ buildPythonPackage rec { sha256 = "1717cd7d2233943cae9af419c6e31dca5e40d5de01ef0bcfd5cd06f37548db08"; }; + nativeBuildInputs = [ setuptools-git ]; + buildInputs = [ pytest ]; - propagatedBuildInputs = [ coverage virtualenv pytestcov six ]; + + checkInputs = [ six ]; checkPhase = '' - py.test -k "not test_yield_requires_config_doesnt_skip and not test_yield_requires_config_skips" + py.test ''; meta = with stdenv.lib; {