Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 29 lines 738 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "pyqt6-sip"; 9 version = "13.6.0"; 10 11 src = fetchPypi { 12 pname = "PyQt6_sip"; 13 inherit version; 14 hash = "sha256-JIbhWIBxlD1PZle6CQltyf/9IyKtLDAEHnjqPwN7V3g="; 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 = [ "PyQt6.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; [ LunNova ]; 28 }; 29}