guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 16d61fe6c28eb24402f3b3dd5cf6351ade56f384
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Mar 14 22:24:55 2026 +0000
gnu: python-qt-py: Update to 2.0.3.
* gnu/packages/qt.scm (python-qt-py): Update to 2.0.3.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments] <tests?>: Disable for now, see:
<https://github.com/mottosso/Qt.py/issues/395>.
[propagated-inputs]: Add python-types-pyside6.
[native-inputs]: Remove python-pyqt; add python-pyqt-6 and
python-setuptools.
Change-Id: I87f1186ec3db5b37ec3cb9389e97d0ecc81e79ac
---
gnu/packages/qt.scm | 22 +++++++++++++++-------
1 file changed, 15 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index d4c789696f..c530eda314 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -5044,17 +5044,25 @@ PySide2, PyQt6, PySide6) and additional custom
QWidgets.")
(define-public python-qt-py
(package
(name "python-qt-py")
- (version "1.3.7")
+ (version "2.0.3")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "Qt.py" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mottosso/Qt.py")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "07rvfwzjl378j75j2va0c6xylwx16icxa6dycsjgjc329pgpng40"))))
- (build-system python-build-system)
- (native-inputs (list python-pyqt))
+ (base32 "0p3aiskbhy5g9f87mkv1vc0mw155wl5x915lk9ankj6d1djjkfxw"))))
+ (build-system pyproject-build-system)
(arguments
- (list #:tests? #f)) ; No tests
+ ;; See: <https://github.com/mottosso/Qt.py/issues/395>.
+ (list #:tests? #f))
+ (native-inputs
+ (list python-pyqt-6
+ python-setuptools))
+ (propagated-inputs
+ (list python-types-pyside6))
(home-page "https://github.com/mottosso/Qt.py")
(synopsis "Abstraction layer for Python Qt bindings")
(description