pythonPackages.mozfile: fix python2 build

This commit is contained in:
Jonathan Ringer 2019-10-25 01:55:22 -07:00 committed by Frederik Rietdijk
parent e740706b7a
commit cb2ecc8130

View File

@ -1,6 +1,8 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, six
}:
buildPythonPackage rec {
@ -12,7 +14,7 @@ buildPythonPackage rec {
sha256 = "e5dc835582ea150e35ecd57e9d86cb707d3aa3b2505679db7332326dd49fd6b8";
};
propagatedBuildInputs = [ ];
propagatedBuildInputs = lib.optional isPy27 six;
# mozhttpd -> moznetwork -> mozinfo -> mozfile
doCheck = false;