python3Packages.twiggy: add missing six dependency

This commit is contained in:
Jonathan Ringer 2020-06-08 11:44:47 -07:00 committed by Frederik Rietdijk
parent 7670a03a63
commit 536b1c02f8

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
@ -12,6 +13,7 @@ buildPythonPackage rec {
sha256 = "259ae96cb22e80c49e75c37dc2f7497028c5dc19018958f05fa00ec08fc2569f";
};
propagatedBuildInputs = [ six ];
doCheck = false;
meta = with stdenv.lib; {