guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 2b067203854adcfad805797b22fd0311d10837f1
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Oct 19 21:49:06 2025 +0100
gnu: python-txamqp: Move to python-web.
* gnu/packages/python-xyz.scm (python-txamqp): Move from here ...
* gnu/packages/python-web.scm: ... to here.
Change-Id: I992d90d280971140ec3bad5bae3bbdc91fe04d12
---
gnu/packages/python-web.scm | 30 ++++++++++++++++++++++++++++++
gnu/packages/python-xyz.scm | 30 ------------------------------
2 files changed, 30 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a783081b5b..af6a55fa4d 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3845,6 +3845,36 @@ high-speed transfers via libcurl and frequently
outperforms alternatives.")
;; under the terms of LGPLv2.1+ or Expat.
(license (list license:lgpl2.1+ license:expat))))
+;; 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")
+ (version "0.8.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "txAMQP" version))
+ (sha256
+ (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")
+ (synopsis "Communicate with AMQP peers and brokers using Twisted")
+ (description
+ "This package provides a Python library for communicating with AMQP peers
+and brokers using the asynchronous networking framework Twisted. It contains
+all the necessary code to connect, send and receive messages to/from an
+AMQP-compliant peer or broker (Qpid, OpenAMQ, RabbitMQ) using Twisted. It
+also includes support for using Thrift RPC over AMQP in Twisted
+applications.")
+ (license license:asl2.0)))
+
(define-public python-txsni
(package
(name "python-txsni")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 367abc2e88..e0a1e6bfc7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21179,36 +21179,6 @@ 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")
- (version "0.8.2")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "txAMQP" version))
- (sha256
- (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")
- (synopsis "Communicate with AMQP peers and brokers using Twisted")
- (description
- "This package provides a Python library for communicating with AMQP peers
-and brokers using the asynchronous networking framework Twisted. It contains
-all the necessary code to connect, send and receive messages to/from an
-AMQP-compliant peer or broker (Qpid, OpenAMQ, RabbitMQ) using Twisted. It
-also includes support for using Thrift RPC over AMQP in Twisted
-applications.")
- (license license:asl2.0)))
-
(define-public python-kombu
(package
(name "python-kombu")