about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-fixture-config
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-07 14:51:26 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-08 11:36:06 +0200
commitd223d125d26007a9b2b239f8da88cf8d11f4e251 (patch)
tree7ab16879b418a43057242a53094c403e89f5723f /pkgs/development/python-modules/pytest-fixture-config
parent7aa6131c8e2dbeb6add0d96a269f70007d4fbd47 (diff)
downloadnixlib-d223d125d26007a9b2b239f8da88cf8d11f4e251.tar
nixlib-d223d125d26007a9b2b239f8da88cf8d11f4e251.tar.gz
nixlib-d223d125d26007a9b2b239f8da88cf8d11f4e251.tar.bz2
nixlib-d223d125d26007a9b2b239f8da88cf8d11f4e251.tar.lz
nixlib-d223d125d26007a9b2b239f8da88cf8d11f4e251.tar.xz
nixlib-d223d125d26007a9b2b239f8da88cf8d11f4e251.tar.zst
nixlib-d223d125d26007a9b2b239f8da88cf8d11f4e251.zip
python.pkgs.pytest-fixture-config: fix build
Diffstat (limited to 'pkgs/development/python-modules/pytest-fixture-config')
-rw-r--r--pkgs/development/python-modules/pytest-fixture-config/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pytest-fixture-config/default.nix b/pkgs/development/python-modules/pytest-fixture-config/default.nix
index 852a1e5fe05d..df700526d1b4 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; {