Merge pull request #91541 from jonringer/fix-mozfile

python3Packages.mozfile: fix build
This commit is contained in:
Michael Raskin 2020-06-27 07:00:47 +00:00 committed by GitHub
commit 62c9cc8d21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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