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:
parent
e2ff3f160d
commit
c1d98d959b
1 changed files with 5 additions and 0 deletions
|
@ -12,6 +12,11 @@
|
|||
attrs // {
|
||||
buildInputs = buildInputs ++ [ bootstrapped-pip ];
|
||||
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
runHook postConfigure
|
||||
'';
|
||||
|
||||
installPhase = attrs.installPhase or ''
|
||||
runHook preInstall
|
||||
|
||||
|
|
Loading…
Reference in a new issue