guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 45baa0261e0b6b9c4730d60c33035b7539710044
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Oct 19 21:46:27 2025 +0100
gnu: python-txamqp: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-txamqp)[build-system]: Switch to
pyproject-build-system.
[arguments] <tests?>: All tests are broken due to age of the package.
[native-inputs]: Add python-setuptools.
Change-Id: I55fa657a1e5d11d4bc554ff8ca933d9c3bc9a8d1
---
gnu/packages/python-xyz.scm | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8c2c0b1d51..367abc2e88 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21179,6 +21179,8 @@ Abstract Syntax Tree}. It is a building block for
writing a static analyzer
or compiler for Python.")
(license license:bsd-3)))
+;; XXX: Potentially abandonware since 2017, consider to remove when nothing
+;; depends on it or fails to build.
(define-public python-txamqp
(package
(name "python-txamqp")
@@ -21188,9 +21190,12 @@ or compiler for Python.")
(method url-fetch)
(uri (pypi-uri "txAMQP" version))
(sha256
- (base32
- "0jd9864k3csc06kipiwzjlk9mq4054s8kzk5q1cfnxj8572s4iv4"))))
- (build-system python-build-system)
+ (base32 "0jd9864k3csc06kipiwzjlk9mq4054s8kzk5q1cfnxj8572s4iv4"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;all tests failed
+ (native-inputs
+ (list python-setuptools))
(propagated-inputs
(list python-six python-twisted))
(home-page "https://github.com/txamqp/txamqp")