{ lib, buildPythonPackage, fetchPypi, packaging, setuptools, setuptools-scm, sip, }: buildPythonPackage rec { pname = "pyqt-builder"; version = "1.18.2"; pyproject = true; src = fetchPypi { pname = "pyqt_builder"; inherit version; hash = "sha256-Vt/qRhSEqHqPDIsCKRkN78Q21+xd5xEC4gs15WORgLw="; }; build-system = [ setuptools setuptools-scm ]; dependencies = [ packaging sip ]; pythonImportsCheck = [ "pyqtbuild" ]; # There aren't tests doCheck = false; meta = with lib; { description = "PEP 517 compliant build system for PyQt"; homepage = "https://github.com/Python-PyQt/PyQt-builder"; license = licenses.gpl3Only; maintainers = [ ]; }; }