setuptools: Update to 0.6c9; fix the `easy_install' command line tool.

svn path=/nixpkgs/trunk/; revision=15690
This commit is contained in:
Ludovic Courtès 2009-05-23 22:54:11 +00:00
parent 7d45b35d1e
commit a50f278386
3 changed files with 39 additions and 21 deletions

View File

@ -1,19 +0,0 @@
args : with args;
rec {
src = fetchurl {
url = http://pypi.python.org/packages/source/s/setuptools/setuptools-0.6c8.tar.gz;
sha256 = "0dry431lkaqqmgvka0rhnw54ljf1yx0npzh7r81z2ylcrn27lrln";
};
buildInputs = [python];
configureFlags = [];
/* doConfigure should be specified separately */
phaseNames = ["createPythonInstallationTarget" "installPythonPackage"];
name = "setuptools-" + version;
meta = {
description = "Installation utilities for Python packages";
};
}

View File

@ -0,0 +1,37 @@
{ fetchurl, stdenv, python, makeWrapper }:
stdenv.mkDerivation rec {
name = "setuptools-0.6c9";
src = fetchurl {
url = "http://pypi.python.org/packages/source/s/setuptools/${name}.tar.gz";
sha256 = "1n5k6hf9nn69fnprgsnr9hdxzj2j6ir76qcy9d4b2v0v62bh86g6";
};
buildInputs = [ python makeWrapper ];
doCheck = true;
buildPhase = "python setup.py build --build-base $out";
checkPhase = "python setup.py test";
installPhase = ''
ensureDir "$out/lib/python2.5/site-packages"
PYTHONPATH="$out/lib/python2.5/site-packages:$PYTHONPATH" \
python setup.py install --prefix="$out"
for i in "$out/bin/"*
do
wrapProgram "$i" \
--prefix PYTHONPATH ":" \
"$out/lib/python2.5/site-packages"
done
'';
meta = {
description = "Utilities to facilitate the installation of Python packages";
homepage = http://pypi.python.org/pypi/setuptools;
licenses = [ "PSF" "ZPL" ];
};
}

View File

@ -4312,8 +4312,8 @@ let
inherit fetchurl stdenv python makeWrapper;
};
setuptools = builderDefsPackage (selectVersion ../development/python-modules/setuptools "0.6c8") {
inherit python;
setuptools = import ../development/python-modules/setuptools {
inherit fetchurl stdenv python makeWrapper;
};
simplejson = import ../development/python-modules/simplejson {