writers: add writeGuile[Bin] (#364531)
[NixPkgs.git] / pkgs / development / python-modules / pyqt / pyqt6-sip.nix
blobe4b6c28d8b5363eae5c472451d297cea6ca59ee1
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   mesa,
6 }:
8 buildPythonPackage rec {
9   pname = "pyqt6-sip";
10   version = "13.8.0";
12   src = fetchPypi {
13     pname = "PyQt6_sip";
14     inherit version;
15     hash = "sha256-L3TPPW2cq1FSvZ9J1XCy37h1U+u1xJGav94n9bn9adQ=";
16   };
18   # There is no test code and the check phase fails with:
19   # > error: could not create 'PyQt5/sip.cpython-38-x86_64-linux-gnu.so': No such file or directory
20   doCheck = false;
21   pythonImportsCheck = [ "PyQt6.sip" ];
23   meta = with lib; {
24     description = "Python bindings for Qt5";
25     homepage = "https://github.com/Python-SIP/sip";
26     license = licenses.gpl3Only;
27     inherit (mesa.meta) platforms;
28     maintainers = with maintainers; [ LunNova ];
29   };