2014-12-23 07:42:30 +00:00
|
|
|
{ stdenv, fetchurl, python, pythonPackages, qt4, pythonDBus, pkgconfig, lndir, makeWrapper }:
|
2009-02-25 16:05:13 +00:00
|
|
|
|
2014-12-24 12:59:57 +00:00
|
|
|
let version = "4.11.3";
|
2014-01-16 07:56:08 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2015-12-09 13:19:29 +00:00
|
|
|
name = "${python.libPrefix}-PyQt-x11-gpl-${version}";
|
2014-01-08 08:39:05 +00:00
|
|
|
|
2009-02-25 16:05:13 +00:00
|
|
|
src = fetchurl {
|
2014-01-16 07:56:08 +00:00
|
|
|
url = "mirror://sourceforge/pyqt/PyQt4/PyQt-${version}/PyQt-x11-gpl-${version}.tar.gz";
|
2014-12-24 12:59:57 +00:00
|
|
|
sha256 = "11jnfjw79s0b0qdd9s6kd69w87vf16dhagbhbmwbmrp2vgf80dw5";
|
2009-02-25 16:05:13 +00:00
|
|
|
};
|
2014-01-08 08:39:05 +00:00
|
|
|
|
2011-07-21 21:14:17 +01:00
|
|
|
configurePhase = ''
|
2011-07-22 02:28:09 +01:00
|
|
|
mkdir -p $out
|
|
|
|
lndir ${pythonDBus} $out
|
|
|
|
|
|
|
|
export PYTHONPATH=$PYTHONPATH:$out/lib/${python.libPrefix}/site-packages
|
2014-01-08 08:39:05 +00:00
|
|
|
|
2011-07-21 21:14:17 +01:00
|
|
|
substituteInPlace configure.py \
|
|
|
|
--replace 'install_dir=pydbusmoddir' "install_dir='$out/lib/${python.libPrefix}/site-packages/dbus/mainloop'"
|
2014-01-08 08:39:05 +00:00
|
|
|
|
2010-08-29 20:36:54 +01:00
|
|
|
configureFlagsArray=( \
|
|
|
|
--confirm-license --bindir $out/bin \
|
|
|
|
--destdir $out/lib/${python.libPrefix}/site-packages \
|
|
|
|
--plugin-destdir $out/lib/qt4/plugins --sipdir $out/share/sip \
|
2011-07-22 02:28:09 +01:00
|
|
|
--dbus=$out/include/dbus-1.0 --verbose)
|
2010-08-29 20:36:54 +01:00
|
|
|
|
2014-01-08 08:39:05 +00:00
|
|
|
${python.executable} configure.py $configureFlags "''${configureFlagsArray[@]}"
|
2011-07-21 21:14:17 +01:00
|
|
|
'';
|
|
|
|
|
2016-08-11 16:26:25 +01:00
|
|
|
buildInputs = [ pkgconfig makeWrapper qt4 lndir ];
|
2011-07-21 22:54:40 +01:00
|
|
|
|
2016-08-11 16:26:25 +01:00
|
|
|
propagatedBuildInputs = [ pythonPackages.sip_4_16 python ];
|
2010-08-29 20:36:54 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for i in $out/bin/*; do
|
2011-07-22 02:28:09 +01:00
|
|
|
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
|
2011-07-21 21:14:17 +01:00
|
|
|
done
|
2014-01-16 07:56:08 +00:00
|
|
|
'';
|
2011-07-21 21:14:17 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-01-08 08:39:05 +00:00
|
|
|
|
2016-08-14 11:37:20 +01:00
|
|
|
passthru = {
|
|
|
|
pythonPath = [];
|
|
|
|
qt = qt4;
|
|
|
|
};
|
2016-05-14 02:22:50 +01:00
|
|
|
|
2009-09-10 18:00:30 +01:00
|
|
|
meta = {
|
|
|
|
description = "Python bindings for Qt";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://www.riverbankcomputing.co.uk;
|
2010-03-23 14:04:47 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
|
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
2009-09-10 18:00:30 +01:00
|
|
|
};
|
2009-02-25 16:05:13 +00:00
|
|
|
}
|