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