summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyqt/sip.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyqt/sip.nix')
-rw-r--r--pkgs/development/python-modules/pyqt/sip.nix15
1 files changed, 8 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/pyqt/sip.nix b/pkgs/development/python-modules/pyqt/sip.nix
index 3702bad5cac7..46597acb6a44 100644
--- a/pkgs/development/python-modules/pyqt/sip.nix
+++ b/pkgs/development/python-modules/pyqt/sip.nix
@@ -1,6 +1,7 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
}:
buildPythonPackage rec {
@@ -16,13 +17,13 @@ buildPythonPackage rec {
# 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;
- pythonImportsCheck = ["PyQt5.sip"];
+ pythonImportsCheck = [ "PyQt5.sip" ];
meta = with lib; {
description = "Python bindings for Qt5";
- homepage = "https://www.riverbankcomputing.com/software/sip/";
- license = licenses.gpl3Only;
- platforms = platforms.mesaPlatforms;
+ homepage = "https://www.riverbankcomputing.com/software/sip/";
+ license = licenses.gpl3Only;
+ platforms = platforms.mesaPlatforms;
maintainers = with maintainers; [ sander ];
};
}