about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-06-16 11:16:30 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-06-16 11:36:10 +0200
commit9f2699fd303095ca76724c804b0d91c662da11b0 (patch)
treedb77409b2feb45414315510478439ffab224cc77 /pkgs/development/python-modules
parent1265acc201e4637ba188a2194d7e3708b75e1a80 (diff)
downloadnixlib-9f2699fd303095ca76724c804b0d91c662da11b0.tar
nixlib-9f2699fd303095ca76724c804b0d91c662da11b0.tar.gz
nixlib-9f2699fd303095ca76724c804b0d91c662da11b0.tar.bz2
nixlib-9f2699fd303095ca76724c804b0d91c662da11b0.tar.lz
nixlib-9f2699fd303095ca76724c804b0d91c662da11b0.tar.xz
nixlib-9f2699fd303095ca76724c804b0d91c662da11b0.tar.zst
nixlib-9f2699fd303095ca76724c804b0d91c662da11b0.zip
Python: fix the wheel package
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/generic/catch_conflicts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/generic/catch_conflicts.py b/pkgs/development/python-modules/generic/catch_conflicts.py
index 35512bb44d35..bb82900c65a9 100644
--- a/pkgs/development/python-modules/generic/catch_conflicts.py
+++ b/pkgs/development/python-modules/generic/catch_conflicts.py
@@ -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)