summary refs log tree commit diff
path: root/pkgs/development/python-modules/setuptools/default.nix
blob: 50b73aaf8f60650c465237891f76fab44d186928 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ stdenv, fetchurl, python, wrapPython }:

stdenv.mkDerivation rec {
  name = "setuptools-0.6c11";

  src = fetchurl {
    url = "http://pypi.python.org/packages/source/s/setuptools/${name}.tar.gz";
    sha256 = "1lx1hwxkhipyh206bgl90ddnfcnb68bzcvyawczbf833fadyl3v3";
  };

  buildInputs = [ python wrapPython ];

  buildPhase = "python setup.py build --build-base $out";

  installPhase =
    ''
      dst=$out/lib/${python.libPrefix}/site-packages
      mkdir -p $dst
      PYTHONPATH=$dst:$PYTHONPATH
      python setup.py install --prefix=$out
      wrapPythonPrograms
    '';

  doCheck = false; # doesn't work with Python 2.7

  checkPhase = "python setup.py test";

  meta = {
    description = "Utilities to facilitate the installation of Python packages";
    homepage = http://pypi.python.org/pypi/setuptools;
    licenses = [ "PSF" "ZPL" ];
  };    
}