nixpkgs/pkgs/development/python-modules/setuptools/default.nix

34 lines
997 B
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, python, wrapPython }:
stdenv.mkDerivation rec {
shortName = "setuptools-${version}";
name = "${python.libPrefix}-${shortName}";
version = "26.1.1"; # 18.4 and up breaks python34Packages.characteristic and many others
src = fetchurl {
url = "mirror://pypi/s/setuptools/${shortName}.tar.gz";
sha256 = "475ce28993d7cb75335942525b9fac79f7431a7f6e8a0079c0f2680641379481";
};
2015-11-18 10:46:34 +00:00
buildInputs = [ python wrapPython ];
doCheck = false; # requires pytest
installPhase = ''
dst=$out/${python.sitePackages}
mkdir -p $dst
2015-07-15 17:40:56 +00:00
export PYTHONPATH="$dst:$PYTHONPATH"
2015-11-18 10:46:34 +00:00
${python.interpreter} setup.py install --prefix=$out
wrapPythonPrograms
2013-07-27 18:51:54 +00:00
'';
pythonPath = [];
meta = with stdenv.lib; {
description = "Utilities to facilitate the installation of Python packages";
homepage = http://pypi.python.org/pypi/setuptools;
license = with lib.licenses; [ psfl zpt20 ];
platforms = platforms.all;
priority = 10;
};
}