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

73 lines
2.1 KiB
Nix
Raw Normal View History

{ lib, fetchurl, pythonPackages, pkgconfig, makeWrapper, qmake
, lndir, qtbase, qtsvg, qtwebkit, qtwebengine, dbus_libs
, withWebSockets ? false, qtwebsockets
, withConnectivity ? false, qtconnectivity
}:
2014-07-07 06:23:55 +00:00
let
pname = "PyQt";
version = "5.9.2";
inherit (pythonPackages) buildPythonPackage python dbus-python sip;
in buildPythonPackage {
pname = pname;
version = version;
format = "other";
name = pname + "-" + 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 = "15439gxari6azbfql20ksz8h4gv23k3kfyjyr89h2yy9k32xm461";
2014-07-07 06:23:55 +00:00
};
2017-06-02 15:40:19 +00:00
nativeBuildInputs = [ pkgconfig makeWrapper qmake ];
2015-06-27 22:10:32 +00:00
buildInputs = [
2017-06-02 15:40:19 +00:00
lndir qtbase qtsvg qtwebkit qtwebengine dbus_libs
] ++ lib.optional withWebSockets qtwebsockets ++ lib.optional withConnectivity qtconnectivity;
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 = ''
runHook preConfigure
2014-07-07 06:23:55 +00:00
mkdir -p $out
lndir ${dbus-python} $out
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 \
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
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;
}