1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 mesa, 6}: 7 8buildPythonPackage rec { 9 pname = "pyqt5-sip"; 10 version = "12.17.0"; 11 format = "setuptools"; 12 13 src = fetchPypi { 14 pname = "pyqt5_sip"; 15 inherit version; 16 hash = "sha256-aC2tzb0iOa+f3AwGKOJ3a4IOEovsiLSbjWkv5oL5C08="; 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 = [ "PyQt5.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; [ sander ]; 30 }; 31}