summary refs log tree commit diff
path: root/pkgs/development/python-modules/hypothesis
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-03-30 00:01:53 +0000
committerJan Malakhovski <oxij@oxij.org>2018-07-16 23:16:49 +0000
commitacbee90e2becd4aa90412094df55c7a629da1435 (patch)
treeb6eed0462b81f82a3dfd3d4993481fa2708dceb7 /pkgs/development/python-modules/hypothesis
parent2badf9a6f88e5620f428b55f3bdedfe041ebf76c (diff)
downloadnixlib-acbee90e2becd4aa90412094df55c7a629da1435.tar
nixlib-acbee90e2becd4aa90412094df55c7a629da1435.tar.gz
nixlib-acbee90e2becd4aa90412094df55c7a629da1435.tar.bz2
nixlib-acbee90e2becd4aa90412094df55c7a629da1435.tar.lz
nixlib-acbee90e2becd4aa90412094df55c7a629da1435.tar.xz
nixlib-acbee90e2becd4aa90412094df55c7a629da1435.tar.zst
nixlib-acbee90e2becd4aa90412094df55c7a629da1435.zip
pythonPackges.hypothesis, pythonPackages.pytest: simpify dependency cycle fix
Diffstat (limited to 'pkgs/development/python-modules/hypothesis')
-rw-r--r--pkgs/development/python-modules/hypothesis/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/hypothesis/default.nix b/pkgs/development/python-modules/hypothesis/default.nix
index d5ee59ac2d92..83e369ec0fcd 100644
--- a/pkgs/development/python-modules/hypothesis/default.nix
+++ b/pkgs/development/python-modules/hypothesis/default.nix
@@ -20,9 +20,9 @@ buildPythonPackage rec {
     sha256 = "063sn5m1966gvm3wrlxczdq4vw0r94h3nd9xpr94qxahpg2r4bpb";
   };
 
-  checkInputs = [ pytest pytest_xdist flaky mock ];
   propagatedBuildInputs = [ attrs coverage ] ++ lib.optional (!isPy3k) [ enum34 ];
 
+  checkInputs = [ pytest pytest_xdist flaky mock ];
   inherit doCheck;
 
   # https://github.com/DRMacIver/hypothesis/issues/300