Python: fix the wheel package

This commit is contained in:
Frederik Rietdijk 2016-06-16 11:16:30 +02:00
parent 1265acc201
commit 9f2699fd30
2 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,7 @@ for f in sys.path:
for req in pkg_resources.find_distributions(f):
if req not in packages[req.project_name]:
# some exceptions inside buildPythonPackage
if req.project_name in ['setuptools', 'pip']:
if req.project_name in ['setuptools', 'pip', 'wheel']:
continue
packages[req.project_name].append(req)

View File

@ -23607,6 +23607,9 @@ in modules // {
propagatedBuildInputs = with self; [ jsonschema ];
# We add this flag to ignore the copy installed by bootstrapped-pip
installFlags = [ "--ignore-installed" ];
meta = {
description = "A built-package format for Python";
license = with licenses; [ mit ];