1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 mesa,
6}:
7
8buildPythonPackage rec {
9 pname = "pyqt6-sip";
10 version = "13.10.2";
11 format = "setuptools";
12
13 src = fetchPypi {
14 pname = "pyqt6_sip";
15 inherit version;
16 hash = "sha256-RkrRVr9SZQDOa9BcrHqCKAr2MJl02BZzm0qaYnFW+v4=";
17 };
18
19 # There is no test code and the check phase fails with:
20 # > error: could not create 'PyQt5/sip.cpython-38-x86_64-linux-gnu.so': No such file or directory
21 doCheck = false;
22 pythonImportsCheck = [ "PyQt6.sip" ];
23
24 meta = with lib; {
25 description = "Python bindings for Qt5";
26 homepage = "https://github.com/Python-SIP/sip";
27 license = licenses.gpl3Only;
28 inherit (mesa.meta) platforms;
29 maintainers = with maintainers; [ LunNova ];
30 };
31}