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

163 lines
4.2 KiB
Nix
Raw Normal View History

{ lib, pythonPackages, pkg-config
, dbus
, qmake, lndir
, qtbase
, qtsvg
, qtdeclarative
, qtwebchannel
, withConnectivity ? false, qtconnectivity
, withMultimedia ? false, qtmultimedia
, withWebKit ? false, qtwebkit
, withWebSockets ? false, qtwebsockets
}:
2014-07-07 06:23:55 +00:00
let
inherit (pythonPackages) buildPythonPackage python isPy3k dbus-python enum34;
2021-01-07 15:56:39 +00:00
sip = if isPy3k then
pythonPackages.sip_5
else
(pythonPackages.sip_4.override { sip-module = "PyQt5.sip"; }).overridePythonAttrs(oldAttrs: {
2021-01-07 15:56:39 +00:00
# If we install sip in another folder, then we need to create a __init__.py as well
# if we want to be able to import it with Python 2.
# Python 3 could rely on it being an implicit namespace package, however,
# PyQt5 we made an explicit namespace package so sip should be as well.
postInstall = ''
cat << EOF > $out/${python.sitePackages}/PyQt5/__init__.py
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
EOF
'';
});
pyqt5_sip = buildPythonPackage rec {
pname = "PyQt5_sip";
version = "12.8.1";
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "30e944db9abee9cc757aea16906d4198129558533eb7fadbe48c5da2bd18e0bd";
};
# There is no test code and the check phase fails with:
# > error: could not create 'PyQt5/sip.cpython-38-x86_64-linux-gnu.so': No such file or directory
doCheck = false;
};
2018-12-10 21:24:09 +00:00
in buildPythonPackage rec {
2020-04-04 02:49:18 +00:00
pname = "PyQt5";
version = "5.15.2";
format = "other";
2014-07-07 06:23:55 +00:00
2020-04-04 02:49:18 +00:00
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "1z74295i69cha52llsqffzhb5zz7qnbjc64h8qg21l91jgf0harp";
2014-07-07 06:23:55 +00:00
};
outputs = [ "out" "dev" ];
2017-06-02 15:40:19 +00:00
dontWrapQtApps = true;
nativeBuildInputs = [
pkg-config
qmake
lndir
sip
qtbase
qtsvg
qtdeclarative
qtwebchannel
]
++ lib.optional withConnectivity qtconnectivity
++ lib.optional withMultimedia qtmultimedia
++ lib.optional withWebKit qtwebkit
++ lib.optional withWebSockets qtwebsockets
;
buildInputs = [
dbus
qtbase
qtsvg
qtdeclarative
]
++ lib.optional withConnectivity qtconnectivity
++ lib.optional withWebKit qtwebkit
++ lib.optional withWebSockets qtwebsockets
;
propagatedBuildInputs = [
dbus-python
2021-01-07 15:56:39 +00:00
] ++ (if isPy3k then [ pyqt5_sip ] else [ sip enum34 ]);
2014-07-07 06:23:55 +00:00
patches = [
# Fix some wrong assumptions by ./configure.py
# TODO: figure out how to send this upstream
./pyqt5-fix-dbus-mainloop-support.patch
];
passthru = {
inherit sip;
multimediaEnabled = withMultimedia;
webKitEnabled = withWebKit;
WebSocketsEnabled = withWebSockets;
};
2014-07-07 06:23:55 +00:00
configurePhase = ''
runHook preConfigure
2018-02-04 09:16:46 +00:00
export PYTHONPATH=$PYTHONPATH:$out/${python.sitePackages}
2014-07-07 06:23:55 +00:00
${python.executable} configure.py -w \
--confirm-license \
--dbus-moduledir=$out/${python.sitePackages}/dbus/mainloop \
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
'';
2021-01-07 15:56:39 +00:00
postInstall = lib.optionalString (!isPy3k) ''
ln -s ${sip}/${python.sitePackages}/PyQt5/sip.* $out/${python.sitePackages}/PyQt5/
2014-07-07 06:23:55 +00:00
for i in $out/bin/*; do
wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
done
# Let's make it a namespace package
cat << EOF > $out/${python.sitePackages}/PyQt5/__init__.py
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
EOF
2014-07-07 06:23:55 +00:00
'';
2021-01-07 15:56:39 +00:00
# Checked using pythonImportsCheck
doCheck = false;
pythonImportsCheck = [
"PyQt5"
"PyQt5.QtCore"
"PyQt5.QtQml"
"PyQt5.QtWidgets"
"PyQt5.QtGui"
]
++ lib.optional withWebSockets "PyQt5.QtWebSockets"
++ lib.optional withWebKit "PyQt5.QtWebKit"
++ lib.optional withMultimedia "PyQt5.QtMultimedia"
++ lib.optional withConnectivity "PyQt5.QtConnectivity"
2021-01-07 15:56:39 +00:00
;
2014-07-07 06:23:55 +00:00
enableParallelBuilding = true;
2018-12-10 21:24:09 +00:00
meta = with lib; {
description = "Python bindings for Qt5";
homepage = "http://www.riverbankcomputing.co.uk";
2018-12-10 21:24:09 +00:00
license = licenses.gpl3;
platforms = platforms.mesaPlatforms;
maintainers = with maintainers; [ sander ];
};
2014-07-07 06:23:55 +00:00
}