about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-08-02 12:17:37 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-08-02 12:23:15 +0200
commit8fad3e81b07825ae8476f49eb32bd80f87ea82d2 (patch)
tree2d6925502eceb9eb72c57bb5f407785b02acf51a /pkgs/development/python-modules
parent2c7b5ac8a9cddbda9fa929c193e4a37d4aead437 (diff)
downloadnixlib-8fad3e81b07825ae8476f49eb32bd80f87ea82d2.tar
nixlib-8fad3e81b07825ae8476f49eb32bd80f87ea82d2.tar.gz
nixlib-8fad3e81b07825ae8476f49eb32bd80f87ea82d2.tar.bz2
nixlib-8fad3e81b07825ae8476f49eb32bd80f87ea82d2.tar.lz
nixlib-8fad3e81b07825ae8476f49eb32bd80f87ea82d2.tar.xz
nixlib-8fad3e81b07825ae8476f49eb32bd80f87ea82d2.tar.zst
nixlib-8fad3e81b07825ae8476f49eb32bd80f87ea82d2.zip
pythonPackages.setuptools: specify priority
Both python3 and setuptools come with easy-install. For some magic
reason this hasn't caused any collisions yet, but it does with #17428.
We hereby prioritize the version that comes with setuptools.
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/setuptools/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix
index d01bc684f699..290b0d98fe08 100644
--- a/pkgs/development/python-modules/setuptools/default.nix
+++ b/pkgs/development/python-modules/setuptools/default.nix
@@ -28,5 +28,6 @@ stdenv.mkDerivation rec {
     homepage = http://pypi.python.org/pypi/setuptools;
     license = with lib.licenses; [ psfl zpt20 ];
     platforms = platforms.all;
+    priority = 10;
   };
 }