Revert "move checkPhase after fixupPhase for python packages"

This reverts commit 413c44da228754018a2920cb556303e803a9d488.

svn path=/nixpkgs/branches/stdenv-updates/; revision=32643
This commit is contained in:
Florian Friesdorf 2012-02-28 00:06:49 +00:00
parent 013c915777
commit 178b5b9c5b
2 changed files with 0 additions and 13 deletions

View file

@ -1,9 +0,0 @@
source $stdenv/setup
# move checkPhase from after buildPhase to after fixupPhase
phases="$prePhases unpackPhase patchPhase $preConfigurePhases \
configurePhase $preBuildPhases buildPhase \
$preInstallPhases installPhase fixupPhase checkPhase \
$preDistPhases distPhase $postPhases";
genericBuild

View file

@ -54,7 +54,6 @@
, doCheck ? true
# run after fixupPhase
, checkPhase ?
''
runHook preCheck
@ -70,9 +69,6 @@
python.stdenv.mkDerivation (attrs // {
inherit doCheck buildPhase checkPhase;
# moves checkPhase from after buildPhase to after fixupPhase
builder = ./builder.sh;
name = namePrefix + name;
buildInputs = [ python wrapPython setuptools unzip ] ++ buildInputs ++ pythonPath;