summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-19 21:49:06 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-19 21:49:06 +0100
commit2b067203854adcfad805797b22fd0311d10837f1 (patch)
tree72352708ed236fa3b72dc2dc9e452e9b6abfa639 /gnu/packages/python-web.scm
parent45baa0261e0b6b9c4730d60c33035b7539710044 (diff)
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
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a783081b5b4..af6a55fa4d5 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")