lol

pyqt5: Fix running of {pre,post}Configure

Commit 0055c6a introduced a new preConfigure hook that sets the right
qmake path. Unfortunately the mkDerivation attributes of pyqt5 override
the whole configurePhase, so this hook isn't run at all.

This fixes the build of pyqt5 and it now successfully compiles on my
machine.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>

aszlig f1c25724 96bed5b7

+2
+2
pkgs/development/python-modules/pyqt/5.x.nix
··· 27 propagatedBuildInputs = [ sip ]; 28 29 configurePhase = '' 30 mkdir -p $out 31 lndir ${pythonDBus} $out 32 ··· 44 --destdir=$out/lib/${python.libPrefix}/site-packages \ 45 --sipdir=$out/share/sip \ 46 --designer-plugindir=$out/plugins/designer 47 ''; 48 49 postInstall = ''
··· 27 propagatedBuildInputs = [ sip ]; 28 29 configurePhase = '' 30 + runHook preConfigure 31 mkdir -p $out 32 lndir ${pythonDBus} $out 33 ··· 45 --destdir=$out/lib/${python.libPrefix}/site-packages \ 46 --sipdir=$out/share/sip \ 47 --designer-plugindir=$out/plugins/designer 48 + runHook postConfigure 49 ''; 50 51 postInstall = ''