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