~ruther/guix-local

45baa0261e0b6b9c4730d60c33035b7539710044 — Sharlatan Hellseher 4 months ago 19c2933
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
1 files changed, 8 insertions(+), 3 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +8 -3
@@ 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")