2018-07-21 01:44:44 +01:00
|
|
|
{ lib, fetchurl, fetchpatch, pythonPackages, pkgconfig
|
2018-12-10 21:18:38 +00:00
|
|
|
, qmake, lndir, qtbase, qtsvg, qtwebengine, dbus
|
2017-11-19 10:14:29 +00:00
|
|
|
, withConnectivity ? false, qtconnectivity
|
2018-12-10 21:18:38 +00:00
|
|
|
, withWebKit ? false, qtwebkit
|
|
|
|
, withWebSockets ? false, qtwebsockets
|
2017-11-12 17:23:06 +00:00
|
|
|
}:
|
2014-07-07 07:23:55 +01:00
|
|
|
|
|
|
|
let
|
2017-11-09 11:26:09 +00:00
|
|
|
|
2018-12-27 03:06:14 +00:00
|
|
|
inherit (pythonPackages) buildPythonPackage python isPy3k dbus-python enum34;
|
|
|
|
|
|
|
|
sip = pythonPackages.sip.override { sip-module = "PyQt5.sip"; };
|
2018-03-21 20:07:05 +00:00
|
|
|
|
2018-12-10 21:24:09 +00:00
|
|
|
in buildPythonPackage rec {
|
|
|
|
pname = "PyQt";
|
|
|
|
version = "5.11.3";
|
2017-03-21 12:01:17 +00:00
|
|
|
format = "other";
|
2014-07-07 07:23:55 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-08-17 14:48:02 +01:00
|
|
|
url = "mirror://sourceforge/pyqt/PyQt5/PyQt-${version}/PyQt5_gpl-${version}.tar.gz";
|
2018-10-29 13:31:09 +00:00
|
|
|
sha256 = "0wqh4srqkcc03rvkwrcshaa028psrq58xkys6npnyhqxc0apvdf9";
|
2014-07-07 07:23:55 +01:00
|
|
|
};
|
|
|
|
|
2018-03-21 20:07:05 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2017-06-02 16:40:19 +01:00
|
|
|
|
2019-02-15 08:36:36 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake lndir sip ];
|
2014-07-07 07:23:55 +01:00
|
|
|
|
2018-12-27 03:06:14 +00:00
|
|
|
buildInputs = [ dbus sip ];
|
2018-03-21 20:07:05 +00:00
|
|
|
|
2019-03-02 23:15:39 +00:00
|
|
|
propagatedBuildInputs = [ qtbase qtsvg qtwebengine dbus-python ]
|
2018-12-10 21:18:38 +00:00
|
|
|
++ lib.optional (!isPy3k) enum34
|
|
|
|
++ lib.optional withConnectivity qtconnectivity
|
|
|
|
++ lib.optional withWebKit qtwebkit
|
|
|
|
++ lib.optional withWebSockets qtwebsockets;
|
2014-07-07 07:23:55 +01:00
|
|
|
|
2019-03-02 23:15:39 +00:00
|
|
|
patches = [
|
|
|
|
# Fix some wrong assumptions by ./configure.py
|
|
|
|
# TODO: figure out how to send this upstream
|
|
|
|
./pyqt5-fix-dbus-mainloop-support.patch
|
|
|
|
];
|
|
|
|
|
2014-07-07 07:23:55 +01:00
|
|
|
configurePhase = ''
|
2016-07-19 18:35:04 +01:00
|
|
|
runHook preConfigure
|
|
|
|
|
2018-02-04 09:16:46 +00:00
|
|
|
export PYTHONPATH=$PYTHONPATH:$out/${python.sitePackages}
|
2014-07-07 07:23:55 +01:00
|
|
|
|
|
|
|
${python.executable} configure.py -w \
|
|
|
|
--confirm-license \
|
2019-03-02 23:15:39 +00:00
|
|
|
--dbus-moduledir=$out/${python.sitePackages}/dbus/mainloop \
|
2014-07-07 07:23:55 +01:00
|
|
|
--no-qml-plugin \
|
|
|
|
--bindir=$out/bin \
|
2016-08-17 14:48:02 +01:00
|
|
|
--destdir=$out/${python.sitePackages} \
|
|
|
|
--stubsdir=$out/${python.sitePackages}/PyQt5 \
|
|
|
|
--sipdir=$out/share/sip/PyQt5 \
|
2014-07-07 07:23:55 +01:00
|
|
|
--designer-plugindir=$out/plugins/designer
|
2016-07-19 18:35:04 +01:00
|
|
|
|
|
|
|
runHook postConfigure
|
2014-07-07 07:23:55 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
2018-12-27 03:06:14 +00:00
|
|
|
ln -s ${sip}/${python.sitePackages}/PyQt5/sip.* $out/${python.sitePackages}/PyQt5/
|
2014-07-07 07:23:55 +01:00
|
|
|
for i in $out/bin/*; do
|
|
|
|
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2018-12-10 21:24:09 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python bindings for Qt5";
|
|
|
|
homepage = http://www.riverbankcomputing.co.uk;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.mesaPlatforms;
|
|
|
|
maintainers = with maintainers; [ sander ];
|
|
|
|
};
|
2014-07-07 07:23:55 +01:00
|
|
|
}
|