about summary refs log tree commit diff
path: root/pkgs/development/python-modules/hypothesis
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-11-05 21:19:11 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-30 04:50:38 +0100
commitf9268589f88a13de6dcff6dd3e4c6cef5d88fb3f (patch)
tree75d0ac7552ff2097c3d44baf948fa1d62da2b9e3 /pkgs/development/python-modules/hypothesis
parent548aff5a49e1a94872054727d6aee04941ec04f1 (diff)
treewide: structured attrs fixes
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 ec9c5ecefa0f0..9e3b0cdc894c6 100644
--- a/pkgs/development/python-modules/hypothesis/default.nix
+++ b/pkgs/development/python-modules/hypothesis/default.nix
@@ -22,7 +22,7 @@ buildPythonPackage rec {
 
   postUnpack = "sourceRoot=$sourceRoot/hypothesis-python";
 
-  propagatedBuildInputs = [ attrs coverage ] ++ lib.optional (!isPy3k) [ enum34 ];
+  propagatedBuildInputs = [ attrs coverage ] ++ lib.optional (!isPy3k) enum34;
 
   checkInputs = [ pytest pytest_xdist flaky mock pexpect ];
   inherit doCheck;