3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/setuptools/default.nix

49 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, python
, wrapPython
, unzip
, callPackage
, bootstrapped-pip
}:
buildPythonPackage rec {
pname = "setuptools";
2019-04-24 17:42:50 +01:00
version = "41.0.1";
format = "other";
src = fetchPypi {
inherit pname version;
extension = "zip";
2019-04-24 17:42:50 +01:00
sha256 = "a222d126f5471598053c9a77f4b5d4f26eaa1f150ad6e01dcf1a42e185d05613";
};
# There is nothing to build
dontBuild = true;
nativeBuildInputs = [ bootstrapped-pip ];
2015-11-18 10:46:34 +00:00
installPhase = ''
dst=$out/${python.sitePackages}
mkdir -p $dst
2015-07-15 18:40:56 +01:00
export PYTHONPATH="$dst:$PYTHONPATH"
${python.pythonForBuild.interpreter} setup.py install --prefix=$out
wrapPythonPrograms
2013-07-27 19:51:54 +01:00
'';
# Adds setuptools to nativeBuildInputs causing infinite recursion.
catchConflicts = false;
# Requires pytest, causing infinite recursion.
doCheck = false;
meta = with stdenv.lib; {
description = "Utilities to facilitate the installation of Python packages";
homepage = https://pypi.python.org/pypi/setuptools;
license = with licenses; [ psfl zpl20 ];
platforms = python.meta.platforms;
priority = 10;
};
}