nixpkgs/pkgs/development/python-modules/generic/builder.sh
Florian Friesdorf d16a15c0a5 move checkPhase after fixupPhase for python packages
authored by: chaoflow, goibhniu

svn path=/nixpkgs/branches/stdenv-updates/; revision=32625
2012-02-27 17:34:02 +00:00

10 lines
322 B
Bash

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