emacsPackages.treemacs: replace python3 program (#364623)
[NixPkgs.git] / pkgs / development / python-modules / pyqt / sip.nix
blob4a4ceebf66a6e16487542f46f94e08e66dc4ce52
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   mesa,
6 }:
8 buildPythonPackage rec {
9   pname = "pyqt5-sip";
10   version = "12.15.0";
12   src = fetchPypi {
13     pname = "PyQt5_sip";
14     inherit version;
15     hash = "sha256-0j/fzzY7XO3Z05+KnFcQ59UoBPWwiljpHGOLNur8twI=";
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 = [ "PyQt5.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; [ sander ];
29   };