python.pkgs.iniparse: fix build

This commit is contained in:
Frederik Rietdijk
2020-06-11 10:00:26 +02:00
parent 81fc2ad582
commit 5249b7029c
@@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, python , python
, six
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@@ -17,6 +18,8 @@ buildPythonPackage rec {
${python.interpreter} runtests.py ${python.interpreter} runtests.py
''; '';
propagatedBuildInputs = [ six ];
# Does not install tests # Does not install tests
doCheck = false; doCheck = false;