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 27 propagatedBuildInputs = [ sip ]; 28 28 29 29 configurePhase = '' 30 + runHook preConfigure 30 31 mkdir -p $out 31 32 lndir ${pythonDBus} $out 32 33 ··· 44 45 --destdir=$out/lib/${python.libPrefix}/site-packages \ 45 46 --sipdir=$out/share/sip \ 46 47 --designer-plugindir=$out/plugins/designer 48 + runHook postConfigure 47 49 ''; 48 50 49 51 postInstall = ''