From 92da3fd865675422776db0dc1f0196c8043a982d Mon Sep 17 00:00:00 2001 From: Florian Friesdorf Date: Tue, 28 Feb 2012 00:07:16 +0000 Subject: [PATCH] Revert "PYTHONPATH in preConfigure instead of configurePhase" This reverts commit a9873e9412d5ffb333baaf33502c8dff62548fa6. svn path=/nixpkgs/branches/stdenv-updates/; revision=32651 --- pkgs/development/python-modules/generic/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index 5f85d837c3c6..6eaa67562d23 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -73,7 +73,7 @@ python.stdenv.mkDerivation (attrs // { buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath; - preConfigure = '' + configurePhase = '' # 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"