1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "pyqt5-sip";
9 version = "12.13.0";
10
11 src = fetchPypi {
12 pname = "PyQt5_sip";
13 inherit version;
14 hash = "sha256-fzIdr4S5ydvKYbgOHvN72v/A6TMS7a4s19oluVOXHZE=";
15 };
16
17 # There is no test code and the check phase fails with:
18 # > error: could not create 'PyQt5/sip.cpython-38-x86_64-linux-gnu.so': No such file or directory
19 doCheck = false;
20 pythonImportsCheck = [ "PyQt5.sip" ];
21
22 meta = with lib; {
23 description = "Python bindings for Qt5";
24 homepage = "https://www.riverbankcomputing.com/software/sip/";
25 license = licenses.gpl3Only;
26 platforms = platforms.mesaPlatforms;
27 maintainers = with maintainers; [ sander ];
28 };
29}