about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fasteners
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-24 14:04:05 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-04-03 17:49:44 +0200
commit8b88b9714bc74140abca73098f574d72c1ff109a (patch)
treeab3e66849472e5758bbcaf316f35083a6aaaa86b /pkgs/development/python-modules/fasteners
parentb8d3b7faf6677930b040e7eefa1a7c93c174388b (diff)
python3Packages.fasteners: fix build
Diffstat (limited to 'pkgs/development/python-modules/fasteners')
-rw-r--r--pkgs/development/python-modules/fasteners/default.nix16
1 files changed, 14 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/fasteners/default.nix b/pkgs/development/python-modules/fasteners/default.nix
index 32dc93773fded..9a40b1f99fe72 100644
--- a/pkgs/development/python-modules/fasteners/default.nix
+++ b/pkgs/development/python-modules/fasteners/default.nix
@@ -3,6 +3,8 @@
 , fetchPypi
 , six
 , monotonic
+, diskcache
+, more-itertools
 , testtools
 , isPy3k
 , nose
@@ -18,9 +20,19 @@ buildPythonPackage rec {
     sha256 = "c995d8c26b017c5d6a6de9ad29a0f9cdd57de61ae1113d28fac26622b06a0933";
   };
 
-  propagatedBuildInputs = [ six monotonic ];
+  propagatedBuildInputs = [
+    six
+    monotonic
+  ];
 
-  checkInputs = [ testtools nose ] ++ lib.optionals (!isPy3k) [ futures ];
+  checkInputs = [
+    diskcache
+    more-itertools
+    testtools
+    nose
+  ] ++ lib.optionals (!isPy3k) [
+    futures
+  ];
 
   checkPhase = ''
     nosetests