about summary refs log tree commit diff
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.nix20
1 files changed, 11 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/pyqt/sip.nix b/pkgs/development/python-modules/pyqt/sip.nix
index 3702bad5cac7a..4a4ceebf66a6e 100644
--- a/pkgs/development/python-modules/pyqt/sip.nix
+++ b/pkgs/development/python-modules/pyqt/sip.nix
@@ -1,28 +1,30 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
+{
+  lib,
+  buildPythonPackage,
+  fetchPypi,
+  mesa,
 }:
 
 buildPythonPackage rec {
   pname = "pyqt5-sip";
-  version = "12.13.0";
+  version = "12.15.0";
 
   src = fetchPypi {
     pname = "PyQt5_sip";
     inherit version;
-    hash = "sha256-fzIdr4S5ydvKYbgOHvN72v/A6TMS7a4s19oluVOXHZE=";
+    hash = "sha256-0j/fzzY7XO3Z05+KnFcQ59UoBPWwiljpHGOLNur8twI=";
   };
 
   # 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://github.com/Python-SIP/sip";
+    license = licenses.gpl3Only;
+    inherit (mesa.meta) platforms;
     maintainers = with maintainers; [ sander ];
   };
 }