From 5249b7029ccbad4b44b77d06b868e35f46c0b06d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 7 Jun 2020 15:06:52 +0200 Subject: [PATCH] python.pkgs.iniparse: fix build --- pkgs/development/python-modules/iniparse/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/iniparse/default.nix b/pkgs/development/python-modules/iniparse/default.nix index d292196ff53..e240b0863c2 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;