1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

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
This commit is contained in:
Sharlatan Hellseher
2025-10-19 21:49:06 +01:00
parent 45baa0261e
commit 2b06720385
2 changed files with 30 additions and 30 deletions

View File

@@ -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")

View File

@@ -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")