python.pkgs.iniparse: fix build

This commit is contained in:
Frederik Rietdijk 2020-06-07 15:06:52 +02:00
parent 81fc2ad582
commit 5249b7029c

View File

@ -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;