buildPythonPackage: add configurePhase, fixes #20926

I had removed the configurePhase in
https://github.com/NixOS/nixpkgs/pull/20894 because it was empty. This
seemed to break packages that use cmake.
This commit is contained in:
Frederik Rietdijk 2016-12-05 17:29:39 +01:00
parent e2ff3f160d
commit c1d98d959b

View file

@ -12,6 +12,11 @@
attrs // {
buildInputs = buildInputs ++ [ bootstrapped-pip ];
configurePhase = ''
runHook preConfigure
runHook postConfigure
'';
installPhase = attrs.installPhase or ''
runHook preInstall