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

40 lines
963 B
Nix
Raw Normal View History

{ stdenv
, fetchPypi
, python
, wrapPython
, unzip
}:
# Should use buildPythonPackage here somehow
stdenv.mkDerivation rec {
pname = "setuptools";
version = "36.0.1";
name = "${python.libPrefix}-${pname}-${version}";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "e17c4687fddd6d70a6604ac0ad25e33324cec71b5137267dd5c45e103c4b288a";
};
buildInputs = [ python wrapPython unzip ];
2015-11-18 11:46:34 +01:00
doCheck = false; # requires pytest
installPhase = ''
dst=$out/${python.sitePackages}
mkdir -p $dst
2015-07-15 19:40:56 +02:00
export PYTHONPATH="$dst:$PYTHONPATH"
2015-11-18 11:46:34 +01:00
${python.interpreter} setup.py install --prefix=$out
wrapPythonPrograms
2013-07-27 20:51:54 +02:00
'';
pythonPath = [];
meta = with stdenv.lib; {
description = "Utilities to facilitate the installation of Python packages";
homepage = http://pypi.python.org/pypi/setuptools;
license = with licenses; [ psfl zpl20 ];
platforms = platforms.all;
priority = 10;
};
}