pythonPackages.mozfile: fix python2 build
This commit is contained in:
parent
e740706b7a
commit
cb2ecc8130
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user