2011-07-21 22:14:17 +02:00
|
|
|
{ stdenv, fetchurl, python, sip, qt4, pythonDBus, pkgconfig, lndir, makeWrapper }:
|
2009-02-25 17:05:13 +01:00
|
|
|
|
2010-11-24 11:48:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-06-09 15:09:13 +02:00
|
|
|
name = "PyQt-x11-gpl-4.9.1";
|
2010-03-23 15:04:47 +01:00
|
|
|
|
2009-02-25 17:05:13 +01:00
|
|
|
src = fetchurl {
|
2012-07-02 21:00:09 +02:00
|
|
|
urls = [
|
|
|
|
"http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/${name}.tar.gz"
|
|
|
|
"http://pkgs.fedoraproject.org/lookaside/pkgs/PyQt4/PyQt-x11-gpl-4.9.1.tar.gz/7f495dc49f71e3bfb64bf942e0d8bb3c/PyQt-x11-gpl-4.9.1.tar.gz"
|
|
|
|
];
|
2012-06-09 15:09:13 +02:00
|
|
|
sha256 = "1ccvc80z8a0k0drvba9ngivsnv2k2nn5317yf86w1zwh45zmb0zj";
|
2009-02-25 17:05:13 +01:00
|
|
|
};
|
2010-03-23 15:04:47 +01:00
|
|
|
|
2011-07-21 22:14:17 +02:00
|
|
|
configurePhase = ''
|
2011-07-22 03:28:09 +02:00
|
|
|
mkdir -p $out
|
|
|
|
lndir ${pythonDBus} $out
|
|
|
|
|
|
|
|
export PYTHONPATH=$PYTHONPATH:$out/lib/${python.libPrefix}/site-packages
|
|
|
|
|
2011-07-21 22:14:17 +02:00
|
|
|
substituteInPlace configure.py \
|
|
|
|
--replace 'install_dir=pydbusmoddir' "install_dir='$out/lib/${python.libPrefix}/site-packages/dbus/mainloop'"
|
|
|
|
|
2010-08-29 21:36:54 +02: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 03:28:09 +02:00
|
|
|
--dbus=$out/include/dbus-1.0 --verbose)
|
2010-08-29 21:36:54 +02:00
|
|
|
|
|
|
|
python configure.py $configureFlags "''${configureFlagsArray[@]}"
|
2011-07-21 22:14:17 +02:00
|
|
|
'';
|
|
|
|
|
2011-07-22 03:28:09 +02:00
|
|
|
buildInputs = [ python pkgconfig makeWrapper qt4 lndir ];
|
2011-07-21 23:54:40 +02:00
|
|
|
|
2011-07-22 03:28:09 +02:00
|
|
|
propagatedBuildInputs = [ sip ];
|
2010-08-29 21:36:54 +02:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for i in $out/bin/*; do
|
2011-07-22 03:28:09 +02:00
|
|
|
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
|
2011-07-21 22:14:17 +02:00
|
|
|
done
|
|
|
|
''; # */
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2010-03-23 15:04:47 +01:00
|
|
|
|
2009-09-10 19:00:30 +02:00
|
|
|
meta = {
|
|
|
|
description = "Python bindings for Qt";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://www.riverbankcomputing.co.uk;
|
2010-03-23 15:04:47 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.sander ];
|
|
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
2009-09-10 19:00:30 +02:00
|
|
|
};
|
2009-02-25 17:05:13 +01:00
|
|
|
}
|