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
, fetchPypi
, python
, six
}:
buildPythonPackage rec {
@ -17,6 +18,8 @@ buildPythonPackage rec {
${python.interpreter} runtests.py
'';
propagatedBuildInputs = [ six ];
# Does not install tests
doCheck = false;