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

57 lines
1.6 KiB
Nix
Raw Normal View History

2015-12-20 03:48:09 +03:00
{ stdenv, fetchurl, python, pkgconfig, qtbase, qtsvg, qtwebkit, sip, pythonDBus
, lndir, makeWrapper }:
2014-07-07 10:23:55 +04:00
let
2016-01-07 20:46:50 +03:00
version = "5.5.1";
2014-07-07 10:23:55 +04:00
in stdenv.mkDerivation {
2015-12-09 16:19:29 +03:00
name = "${python.libPrefix}-PyQt-${version}";
2014-07-07 10:23:55 +04: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 11:08:15 +03:00
maintainers = with maintainers; [ sander ];
2014-07-07 10:23:55 +04:00
};
src = fetchurl {
url = "mirror://sourceforge/pyqt/PyQt5/PyQt-${version}/PyQt-gpl-${version}.tar.gz";
2016-01-07 20:46:50 +03:00
sha256 = "11l3pm0wkwkxzw4n3022iid3yyia5ap4l0ny1m5ngkzzzfafyw0a";
2014-07-07 10:23:55 +04:00
};
2015-06-28 01:10:32 +03:00
buildInputs = [
python pkgconfig makeWrapper lndir
2015-12-20 03:48:09 +03:00
qtbase qtsvg qtwebkit
2015-06-28 01:10:32 +03:00
];
2014-07-07 10:23:55 +04:00
propagatedBuildInputs = [ sip ];
configurePhase = ''
mkdir -p $out
lndir ${pythonDBus} $out
export PYTHONPATH=$PYTHONPATH:$out/lib/${python.libPrefix}/site-packages
substituteInPlace configure.py \
2014-12-09 15:20:25 +03: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 10:23:55 +04:00
${python.executable} configure.py -w \
--confirm-license \
--dbus=$out/include/dbus-1.0 \
--no-qml-plugin \
--bindir=$out/bin \
--destdir=$out/lib/${python.libPrefix}/site-packages \
--sipdir=$out/share/sip \
--designer-plugindir=$out/plugins/designer
'';
postInstall = ''
for i in $out/bin/*; do
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
done
'';
enableParallelBuilding = true;
}