Python: fix the wheel package
This commit is contained in:
parent
1265acc201
commit
9f2699fd30
@ -9,7 +9,7 @@ for f in sys.path:
|
|||||||
for req in pkg_resources.find_distributions(f):
|
for req in pkg_resources.find_distributions(f):
|
||||||
if req not in packages[req.project_name]:
|
if req not in packages[req.project_name]:
|
||||||
# some exceptions inside buildPythonPackage
|
# some exceptions inside buildPythonPackage
|
||||||
if req.project_name in ['setuptools', 'pip']:
|
if req.project_name in ['setuptools', 'pip', 'wheel']:
|
||||||
continue
|
continue
|
||||||
packages[req.project_name].append(req)
|
packages[req.project_name].append(req)
|
||||||
|
|
||||||
|
@ -23607,6 +23607,9 @@ in modules // {
|
|||||||
|
|
||||||
propagatedBuildInputs = with self; [ jsonschema ];
|
propagatedBuildInputs = with self; [ jsonschema ];
|
||||||
|
|
||||||
|
# We add this flag to ignore the copy installed by bootstrapped-pip
|
||||||
|
installFlags = [ "--ignore-installed" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A built-package format for Python";
|
description = "A built-package format for Python";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user