2017-11-12 17:23:06 +00:00
|
|
|
{ lib, fetchurl, pythonPackages, pkgconfig, makeWrapper, qmake
|
|
|
|
, lndir, qtbase, qtsvg, qtwebkit, qtwebengine, dbus_libs
|
|
|
|
, withWebSockets ? false, qtwebsockets
|
2017-11-19 10:14:29 +00:00
|
|
|
, withConnectivity ? false, qtconnectivity
|
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
|
|
|
pname = "PyQt";
|
2018-02-03 10:23:42 +00:00
|
|
|
version = "5.10";
|
2017-11-09 11:26:09 +00:00
|
|
|
|
2017-03-21 12:01:17 +00:00
|
|
|
inherit (pythonPackages) buildPythonPackage python dbus-python sip;
|
|
|
|
in buildPythonPackage {
|
2017-11-09 11:26:09 +00:00
|
|
|
pname = pname;
|
|
|
|
version = version;
|
2017-03-21 12:01:17 +00:00
|
|
|
format = "other";
|
2014-07-07 07:23:55 +01:00
|
|
|
|
2016-08-31 10:01:16 +01:00
|
|
|
meta = with lib; {
|
2014-07-07 07:23:55 +01: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 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-02-03 10:23:42 +00:00
|
|
|
sha256 = "0l2zy6b7bfjxmg4bb8yikg6i8iy2xdwmvk7knfmrzfpqbmkycbrl";
|
2014-07-07 07:23:55 +01:00
|
|
|
};
|
|
|
|
|
2018-02-04 09:16:46 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake ];
|
2017-06-02 16:40:19 +01:00
|
|
|
|
2015-06-27 23:10:32 +01:00
|
|
|
buildInputs = [
|
2017-06-02 16:40:19 +01:00
|
|
|
lndir qtbase qtsvg qtwebkit qtwebengine dbus_libs
|
2017-11-19 10:14:29 +00:00
|
|
|
] ++ lib.optional withWebSockets qtwebsockets ++ lib.optional withConnectivity qtconnectivity;
|
2014-07-07 07:23:55 +01:00
|
|
|
|
2016-08-31 10:01:16 +01:00
|
|
|
propagatedBuildInputs = [ sip ];
|
2014-07-07 07:23:55 +01:00
|
|
|
|
|
|
|
configurePhase = ''
|
2016-07-19 18:35:04 +01:00
|
|
|
runHook preConfigure
|
|
|
|
|
2014-07-07 07:23:55 +01:00
|
|
|
mkdir -p $out
|
2016-08-16 21:51:21 +01:00
|
|
|
lndir ${dbus-python} $out
|
2016-09-03 15:53:10 +01:00
|
|
|
rm -rf "$out/nix-support"
|
2014-07-07 07:23:55 +01:00
|
|
|
|
2018-02-04 09:16:46 +00:00
|
|
|
export PYTHONPATH=$PYTHONPATH:$out/${python.sitePackages}
|
2014-07-07 07:23:55 +01:00
|
|
|
|
|
|
|
substituteInPlace configure.py \
|
2018-02-04 09:16:46 +00:00
|
|
|
--replace 'install_dir=pydbusmoddir' "install_dir='$out/${python.sitePackages}/dbus/mainloop'" \
|
2014-12-09 12:20:25 +00:00
|
|
|
--replace "ModuleMetadata(qmake_QT=['webkitwidgets'])" "ModuleMetadata(qmake_QT=['webkitwidgets', 'printsupport'])"
|
2014-07-07 07:23:55 +01:00
|
|
|
|
|
|
|
${python.executable} configure.py -w \
|
|
|
|
--confirm-license \
|
2016-08-17 14:48:02 +01:00
|
|
|
--dbus=${dbus_libs.dev}/include/dbus-1.0 \
|
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 = ''
|
|
|
|
for i in $out/bin/*; do
|
|
|
|
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
}
|