2017-02-05 13:05:29 +01:00
|
|
|
{ lib, fetchurl, pythonPackages, pkgconfig, qtbase, qtsvg, qtwebkit, qtwebengine, dbus_libs
|
2016-04-16 21:59:17 +02:00
|
|
|
, lndir, makeWrapper, qmakeHook }:
|
2014-07-07 08:23:55 +02:00
|
|
|
|
|
|
|
let
|
2017-03-08 20:48:17 +01:00
|
|
|
version = "5.8.1";
|
2016-08-31 11:01:16 +02:00
|
|
|
inherit (pythonPackages) mkPythonDerivation python dbus-python sip;
|
|
|
|
in mkPythonDerivation {
|
|
|
|
name = "PyQt-${version}";
|
2014-07-07 08:23:55 +02:00
|
|
|
|
2016-08-31 11:01:16 +02:00
|
|
|
meta = with lib; {
|
2014-07-07 08:23:55 +02:00
|
|
|
description = "Python bindings for Qt5";
|
|
|
|
homepage = http://www.riverbankcomputing.co.uk;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.mesaPlatforms;
|
2016-03-13 09:08:15 +01:00
|
|
|
maintainers = with maintainers; [ sander ];
|
2014-07-07 08:23:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-17 15:48:02 +02:00
|
|
|
url = "mirror://sourceforge/pyqt/PyQt5/PyQt-${version}/PyQt5_gpl-${version}.tar.gz";
|
2017-03-08 20:48:17 +01:00
|
|
|
sha256 = "0biak7l574i2gc8lj1s45skajbxsmmx66nlvs6xaakzkc6r293qy";
|
2014-07-07 08:23:55 +02:00
|
|
|
};
|
|
|
|
|
2015-06-28 00:10:32 +02:00
|
|
|
buildInputs = [
|
2016-08-11 17:26:25 +02:00
|
|
|
pkgconfig makeWrapper lndir
|
2017-02-05 13:05:29 +01:00
|
|
|
qtbase qtsvg qtwebkit qtwebengine dbus_libs qmakeHook
|
2015-06-28 00:10:32 +02:00
|
|
|
];
|
2014-07-07 08:23:55 +02:00
|
|
|
|
2016-08-31 11:01:16 +02:00
|
|
|
propagatedBuildInputs = [ sip ];
|
2014-07-07 08:23:55 +02:00
|
|
|
|
|
|
|
configurePhase = ''
|
2016-07-19 19:35:04 +02:00
|
|
|
runHook preConfigure
|
|
|
|
|
2014-07-07 08:23:55 +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"
|
2014-07-07 08:23:55 +02:00
|
|
|
|
|
|
|
export PYTHONPATH=$PYTHONPATH:$out/lib/${python.libPrefix}/site-packages
|
|
|
|
|
|
|
|
substituteInPlace configure.py \
|
2014-12-09 13:20:25 +01:00
|
|
|
--replace 'install_dir=pydbusmoddir' "install_dir='$out/lib/${python.libPrefix}/site-packages/dbus/mainloop'" \
|
|
|
|
--replace "ModuleMetadata(qmake_QT=['webkitwidgets'])" "ModuleMetadata(qmake_QT=['webkitwidgets', 'printsupport'])"
|
2014-07-07 08:23:55 +02:00
|
|
|
|
|
|
|
${python.executable} configure.py -w \
|
|
|
|
--confirm-license \
|
2016-08-17 15:48:02 +02:00
|
|
|
--dbus=${dbus_libs.dev}/include/dbus-1.0 \
|
2016-07-19 19:35:04 +02:00
|
|
|
--qmake=$QMAKE \
|
2014-07-07 08:23:55 +02:00
|
|
|
--no-qml-plugin \
|
|
|
|
--bindir=$out/bin \
|
2016-08-17 15:48:02 +02:00
|
|
|
--destdir=$out/${python.sitePackages} \
|
|
|
|
--stubsdir=$out/${python.sitePackages}/PyQt5 \
|
|
|
|
--sipdir=$out/share/sip/PyQt5 \
|
2014-07-07 08:23:55 +02:00
|
|
|
--designer-plugindir=$out/plugins/designer
|
2016-07-19 19:35:04 +02:00
|
|
|
|
|
|
|
runHook postConfigure
|
2014-07-07 08:23:55 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
}
|