2018-07-17 22:11:16 +02:00
|
|
|
{ stdenv, fetchurl, pythonPackages, qt4, pkgconfig, lndir, dbus, makeWrapper }:
|
2009-02-25 17:05:13 +01:00
|
|
|
|
2016-08-16 22:51:21 +02:00
|
|
|
let
|
2017-11-09 12:26:09 +01:00
|
|
|
pname = "PyQt-x11-gpl";
|
2017-03-08 11:16:23 +01:00
|
|
|
version = "4.12";
|
2017-11-09 12:26:09 +01:00
|
|
|
|
2017-03-21 13:01:17 +01:00
|
|
|
inherit (pythonPackages) buildPythonPackage python dbus-python sip;
|
|
|
|
in buildPythonPackage {
|
2017-11-09 12:26:09 +01:00
|
|
|
pname = pname;
|
|
|
|
name = pname + "-" + version;
|
|
|
|
version = version;
|
2017-03-21 13:01:17 +01:00
|
|
|
format = "other";
|
2014-01-08 09:39:05 +01:00
|
|
|
|
2009-02-25 17:05:13 +01:00
|
|
|
src = fetchurl {
|
2017-03-08 11:16:23 +01:00
|
|
|
url = "mirror://sourceforge/pyqt/PyQt4_gpl_x11-${version}.tar.gz";
|
|
|
|
sha256 = "1nw8r88a5g2d550yvklawlvns8gd5slw53yy688kxnsa65aln79w";
|
2009-02-25 17:05:13 +01:00
|
|
|
};
|
2014-01-08 09:39:05 +01:00
|
|
|
|
2011-07-21 22:14:17 +02:00
|
|
|
configurePhase = ''
|
2011-07-22 03:28:09 +02:00
|
|
|
mkdir -p $out
|
2016-08-16 22:51:21 +02:00
|
|
|
lndir ${dbus-python} $out
|
2016-09-03 16:53:10 +02:00
|
|
|
rm -rf "$out/nix-support"
|
2011-07-22 03:28:09 +02:00
|
|
|
|
|
|
|
export PYTHONPATH=$PYTHONPATH:$out/lib/${python.libPrefix}/site-packages
|
2016-08-25 19:03:15 +02:00
|
|
|
${stdenv.lib.optionalString stdenv.isDarwin ''
|
2017-08-07 00:05:18 +02:00
|
|
|
export QMAKESPEC="unsupported/macx-clang-libc++" # macOS target after bootstrapping phase \
|
2016-08-25 19:03:15 +02:00
|
|
|
''}
|
2014-01-08 09:39:05 +01:00
|
|
|
|
2011-07-21 22:14:17 +02:00
|
|
|
substituteInPlace configure.py \
|
2016-08-25 19:03:15 +02:00
|
|
|
--replace 'install_dir=pydbusmoddir' "install_dir='$out/lib/${python.libPrefix}/site-packages/dbus/mainloop'" \
|
|
|
|
${stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
--replace "qt_macx_spec = 'macx-g++'" "qt_macx_spec = 'unsupported/macx-clang-libc++'" # for bootstrapping phase \
|
|
|
|
''}
|
2014-01-08 09:39:05 +01:00
|
|
|
|
2010-08-29 21:36:54 +02:00
|
|
|
configureFlagsArray=( \
|
|
|
|
--confirm-license --bindir $out/bin \
|
2016-08-17 18:00:26 +02:00
|
|
|
--destdir $out/${python.sitePackages} \
|
|
|
|
--plugin-destdir $out/lib/qt4/plugins --sipdir $out/share/sip/PyQt4 \
|
2016-09-07 17:32:23 +02:00
|
|
|
--dbus=${dbus-python}/include/dbus-1.0 --verbose)
|
2010-08-29 21:36:54 +02:00
|
|
|
|
2014-01-08 09:39:05 +01:00
|
|
|
${python.executable} configure.py $configureFlags "''${configureFlagsArray[@]}"
|
2011-07-21 22:14:17 +02:00
|
|
|
'';
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-07-17 22:11:16 +02:00
|
|
|
buildInputs = [ makeWrapper qt4 lndir dbus ];
|
2011-07-21 23:54:40 +02:00
|
|
|
|
2016-08-31 11:01:16 +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
|
2014-01-16 08:56:08 +01:00
|
|
|
'';
|
2011-07-21 22:14:17 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-01-08 09:39:05 +01:00
|
|
|
|
2016-08-14 12:37:20 +02:00
|
|
|
passthru = {
|
|
|
|
qt = qt4;
|
|
|
|
};
|
2016-05-14 03:22:50 +02:00
|
|
|
|
2009-09-10 19:00:30 +02:00
|
|
|
meta = {
|
|
|
|
description = "Python bindings for Qt";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://www.riverbankcomputing.co.uk;
|
2016-08-25 19:03:15 +02: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
|
|
|
}
|