From f736357e2232e074dab9032a17deb2ab1eb020dc Mon Sep 17 00:00:00 2001 From: Brendan Tildesley Date: Mon, 22 Feb 2021 22:10:56 +1100 Subject: [PATCH 2/4] gnu: Add python-pyqt-builder. * gnu/packages/qt.scm (python-pyqt-builder): New variable. --- gnu/packages/qt.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index 38903803be..b9f34f39be 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -2263,6 +2263,27 @@ itself.") "--sipdir" sip))))))) (license (list license:gpl2 license:gpl3)))) ; choice of either license +(define-public python-pyqt-builder + (package + (name "python-pyqt-builder") + (version "1.8.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "PyQt-builder" version)) + (sha256 + (base32 + "0335saz7h1j25gm766ssl3375kw1ak2vs3h764qsxzns3cyzvd9h")))) + (build-system python-build-system) + (inputs ;; not sure what type of inputs these should be + `(("python-toml" ,python-toml) + ("python-packaging" ,python-packaging) + ("python-sip" ,python-sip))) + (home-page "https://www.riverbankcomputing.com/software/pyqt/") + (synopsis "The PEP 517 compliant PyQt build system") + (description "The PEP 517 compliant PyQt build system") + (license (list license:gpl2 license:gpl3)))) + (define-public python-qtpy (package (name "python-qtpy") -- 2.30.1