nixpkgs/pkgs/development/python-modules/pyqt/5.x.nix

77 lines
2.1 KiB
Nix
Raw Normal View History

{ lib, fetchurl, pythonPackages, pkgconfig
, qmake, lndir, qtbase, qtsvg, qtwebengine, dbus
, withConnectivity ? false, qtconnectivity
, withWebKit ? false, qtwebkit
, withWebSockets ? false, qtwebsockets
}:
2014-07-07 08:23:55 +02:00
let
inherit (pythonPackages) buildPythonPackage python isPy3k dbus-python enum34;
sip = pythonPackages.sip.override { sip-module = "PyQt5.sip"; };
2018-12-10 22:24:09 +01:00
in buildPythonPackage rec {
pname = "PyQt";
version = "5.11.3";
format = "other";
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";
2018-10-29 14:31:09 +01:00
sha256 = "0wqh4srqkcc03rvkwrcshaa028psrq58xkys6npnyhqxc0apvdf9";
2014-07-07 08:23:55 +02:00
};
outputs = [ "out" "dev" ];
2017-06-02 17:40:19 +02:00
2019-02-15 09:36:36 +01:00
nativeBuildInputs = [ pkgconfig qmake lndir sip ];
2014-07-07 08:23:55 +02:00
buildInputs = [ dbus sip ];
propagatedBuildInputs = [ qtbase qtsvg qtwebengine dbus-python ]
++ lib.optional (!isPy3k) enum34
++ lib.optional withConnectivity qtconnectivity
++ lib.optional withWebKit qtwebkit
++ lib.optional withWebSockets qtwebsockets;
2014-07-07 08:23:55 +02: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 08:23:55 +02:00
configurePhase = ''
runHook preConfigure
2018-02-04 10:16:46 +01:00
export PYTHONPATH=$PYTHONPATH:$out/${python.sitePackages}
2014-07-07 08:23:55 +02:00
${python.executable} configure.py -w \
--confirm-license \
--dbus-moduledir=$out/${python.sitePackages}/dbus/mainloop \
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
runHook postConfigure
2014-07-07 08:23:55 +02:00
'';
postInstall = ''
ln -s ${sip}/${python.sitePackages}/PyQt5/sip.* $out/${python.sitePackages}/PyQt5/
2014-07-07 08:23:55 +02:00
for i in $out/bin/*; do
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
done
'';
enableParallelBuilding = true;
2018-12-10 22:24:09 +01: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 08:23:55 +02:00
}