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