Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 25 lines 583 B view raw
1{ lib, fetchPypi, buildPythonPackage, packaging, sip }: 2 3buildPythonPackage rec { 4 pname = "pyqt-builder"; 5 version = "1.6.0"; 6 7 src = fetchPypi { 8 pname = "PyQt-builder"; 9 inherit version; 10 sha256 = "0g51yak53zzjs4gpq65i01cmpz7w8cjny9wfyxlgr2vi0wag107v"; 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 }; 25}