Merge branch 'py/offline-distutils' into python-merge

Conflicts:
	pkgs/development/python-modules/generic/builder.sh
	pkgs/development/python-modules/generic/default.nix
This commit is contained in:
Florian Friesdorf 2012-11-24 22:49:19 +01:00
commit 92a833604c
2 changed files with 5 additions and 7 deletions

View File

@ -1,6 +0,0 @@
source $stdenv/setup
# do not allow distutils to make downloads, whatever install command is used
export PYTHONPATH="${offlineDistutils}/lib/${python.libPrefix}:$PYTHONPATH"
genericBuild

View File

@ -32,6 +32,7 @@
python setup.py test
runHook postCheck
''
, configurePhase ? "true"
, postInstall ? ""
@ -47,7 +48,10 @@ python.stdenv.mkDerivation (attrs // {
buildInputStrings = map toString buildInputs;
builder = ./builder.sh;
configurePhase = ''
export PYTHONPATH="${offlineDistutils}/lib/${python.libPrefix}:$PYTHONPATH"
${configurePhase}
'';
pythonPath = [ setuptools] ++ pythonPath;