about summary refs log tree commit diff
path: root/pkgs/development/python-modules/iniparse
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2020-06-07 15:06:52 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2020-06-11 10:00:26 +0200
commit5249b7029ccbad4b44b77d06b868e35f46c0b06d (patch)
treededccf2884c84e57bf37f94159a53cb4fe1405b6 /pkgs/development/python-modules/iniparse
parent81fc2ad582d0c7cd2b9d31fcac4d9a68c9612286 (diff)
python.pkgs.iniparse: fix build
Diffstat (limited to 'pkgs/development/python-modules/iniparse')
-rw-r--r--pkgs/development/python-modules/iniparse/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/iniparse/default.nix b/pkgs/development/python-modules/iniparse/default.nix
index d292196ff5365..e240b0863c233 100644
--- a/pkgs/development/python-modules/iniparse/default.nix
+++ b/pkgs/development/python-modules/iniparse/default.nix
@@ -2,6 +2,7 @@
 , buildPythonPackage
 , fetchPypi
 , python
+, six
 }:
 
 buildPythonPackage rec {
@@ -17,6 +18,8 @@ buildPythonPackage rec {
     ${python.interpreter} runtests.py
   '';
 
+  propagatedBuildInputs = [ six ];
+
   # Does not install tests
   doCheck = false;