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

66 lines
1.9 KiB
Nix
Raw Normal View History

2016-08-17 15:48:02 +02:00
{ stdenv, fetchurl, pythonPackages, pkgconfig, qtbase, qtsvg, qtwebkit, dbus_libs
, lndir, makeWrapper, qmakeHook }:
2014-07-07 08:23:55 +02:00
let
2016-08-17 15:48:02 +02:00
version = "5.6";
inherit (pythonPackages) python dbus-python sip;
2014-07-07 08:23:55 +02:00
in stdenv.mkDerivation {
2015-12-09 14:19:29 +01:00
name = "${python.libPrefix}-PyQt-${version}";
2014-07-07 08:23:55 +02:00
meta = with stdenv.lib; {
description = "Python bindings for Qt5";
homepage = http://www.riverbankcomputing.co.uk;
license = licenses.gpl3;
platforms = platforms.mesaPlatforms;
2016-03-13 09:08:15 +01:00
maintainers = with maintainers; [ sander ];
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";
sha256 = "1qgh42zsr9jppl9k7fcdbhxcd1wrb7wyaj9lng9nxfa19in1lj1f";
2014-07-07 08:23:55 +02:00
};
2015-06-28 00:10:32 +02:00
buildInputs = [
2016-08-11 17:26:25 +02:00
pkgconfig makeWrapper lndir
2016-08-17 15:48:02 +02:00
qtbase qtsvg qtwebkit dbus_libs qmakeHook
2015-06-28 00:10:32 +02:00
];
2014-07-07 08:23:55 +02:00
2016-08-11 17:26:25 +02:00
propagatedBuildInputs = [ sip python ];
2014-07-07 08:23:55 +02:00
configurePhase = ''
runHook preConfigure
2014-07-07 08:23:55 +02:00
mkdir -p $out
lndir ${dbus-python} $out
2014-07-07 08:23:55 +02:00
export PYTHONPATH=$PYTHONPATH:$out/lib/${python.libPrefix}/site-packages
substituteInPlace configure.py \
2014-12-09 13:20:25 +01: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 08:23:55 +02:00
${python.executable} configure.py -w \
--confirm-license \
2016-08-17 15:48:02 +02:00
--dbus=${dbus_libs.dev}/include/dbus-1.0 \
--qmake=$QMAKE \
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 = ''
for i in $out/bin/*; do
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
done
'';
enableParallelBuilding = true;
passthru.pythonPath = [];
2014-07-07 08:23:55 +02:00
}