offlineDistutils in PYTHONPATH in configurePhase instead of builder.sh

Conflicts:
	pkgs/development/python-modules/generic/default.nix
This commit is contained in:
Florian Friesdorf 2012-11-24 22:32:47 +01:00
parent ccb5d0fc19
commit 74d963c69a
2 changed files with 7 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 ? ""
@ -45,7 +46,12 @@ python.stdenv.mkDerivation (attrs // {
buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath;
builder = ./builder.sh;
buildInputStrings = map toString buildInputs;
configurePhase = ''
export PYTHONPATH="${offlineDistutils}/lib/${python.libPrefix}:$PYTHONPATH"
${configurePhase}
'';
pythonPath = [ setuptools] ++ pythonPath;