Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.05 26 lines 628 B view raw
1{ lib, fetchPypi, buildPythonPackage, packaging, sip }: 2 3buildPythonPackage rec { 4 pname = "pyqt-builder"; 5 version = "1.14.1"; 6 7 src = fetchPypi { 8 pname = "PyQt-builder"; 9 inherit version; 10 hash = "sha256-g7w+MAr/i0FAWAS2qcKRM4mrWcSK2fDLhYSm73O8pQI="; 11 }; 12 13 propagatedBuildInputs = [ packaging sip ]; 14 15 pythonImportsCheck = [ "pyqtbuild" ]; 16 17 # There aren't tests 18 doCheck = false; 19 20 meta = with lib; { 21 description = "PEP 517 compliant build system for PyQt"; 22 homepage = "https://pypi.org/project/PyQt-builder/"; 23 license = licenses.gpl3Only; 24 maintainers = with maintainers; [ nrdxp ]; 25 }; 26}