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 {
|
|
|
|
name = "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 20:14:17 +00:00
|
|
|
configurePhase = ''
|
2011-07-22 01:28:09 +00: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 20:14:17 +00: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 19:36:54 +00: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 01:28:09 +00:00
|
|
|
--dbus=$out/include/dbus-1.0 --verbose)
|
2010-08-29 19:36:54 +00:00
|
|
|
|
2014-01-08 08:39:05 +00:00
|
|
|
${python.executable} configure.py $configureFlags "''${configureFlagsArray[@]}"
|
2011-07-21 20:14:17 +00:00
|
|
|
'';
|
|
|
|
|
2011-07-22 01:28:09 +00:00
|
|
|
buildInputs = [ python pkgconfig makeWrapper qt4 lndir ];
|
2011-07-21 21:54:40 +00:00
|
|
|
|
2014-12-24 12:59:57 +00:00
|
|
|
propagatedBuildInputs = [ pythonPackages.sip_4_16 ];
|
2010-08-29 19:36:54 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for i in $out/bin/*; do
|
2011-07-22 01:28:09 +00:00
|
|
|
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
|
2011-07-21 20:14:17 +00:00
|
|
|
done
|
2014-01-16 07:56:08 +00:00
|
|
|
'';
|
2011-07-21 20:14:17 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-01-08 08:39:05 +00:00
|
|
|
|
2009-09-10 17:00:30 +00: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 17:00:30 +00:00
|
|
|
};
|
2009-02-25 16:05:13 +00:00
|
|
|
}
|