use offline-disutils in buildPythonPackage

This commit is contained in:
Florian Friesdorf 2012-11-23 17:27:55 +01:00
parent 224251d104
commit ad8a4c73fa
3 changed files with 14 additions and 2 deletions

View File

@ -0,0 +1,10 @@
source $stdenv/setup
# do not allow distutils to make downloads, whatever install command is used
export PYTHONPATH="${setuptools}/lib/${python.libPrefix}:$PYTHONPATH"
export PYTHONPATH="${offlineDistutils}/lib/${python.libPrefix}:$PYTHONPATH"
# enable pth files for dependencies
export PYTHONPATH="${site}/lib/${python.libPrefix}/site-packages:$PYTHONPATH"
genericBuild

View File

@ -3,7 +3,7 @@
(http://pypi.python.org/pypi/setuptools/), which represents a large (http://pypi.python.org/pypi/setuptools/), which represents a large
number of Python packages nowadays. */ number of Python packages nowadays. */
{ python, setuptools, wrapPython, lib }: { python, setuptools, wrapPython, lib, offlineDistutils }:
{ name, namePrefix ? "python-" { name, namePrefix ? "python-"
@ -45,6 +45,8 @@ python.stdenv.mkDerivation (attrs // {
buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath; buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath;
builder = ./builder.sh
pythonPath = [ setuptools] ++ pythonPath; pythonPath = [ setuptools] ++ pythonPath;
# XXX: Should we run `easy_install --always-unzip'? It doesn't seem # XXX: Should we run `easy_install --always-unzip'? It doesn't seem

View File

@ -9,7 +9,7 @@ let pythonPackages = python.modules // rec {
buildPythonPackage = import ../development/python-modules/generic { buildPythonPackage = import ../development/python-modules/generic {
inherit (pkgs) lib; inherit (pkgs) lib;
inherit python wrapPython setuptools; inherit python wrapPython setuptools offlineDistutils;
}; };