nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 26 lines 637 B view raw
1{ lib, fetchPypi, buildPythonPackage, packaging, sip }: 2 3buildPythonPackage rec { 4 pname = "pyqt-builder"; 5 version = "1.12.2"; 6 7 src = fetchPypi { 8 pname = "PyQt-builder"; 9 inherit version; 10 sha256 = "f62bb688d70e0afd88c413a8d994bda824e6cebd12b612902d1945c5a67edcd7"; 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; [ ]; 25 }; 26}