me
/
guix
Archived
1
0
Fork 0

gnu: python-amqp: Update to 5.1.1 and enable tests.

* gnu/packages/python-xyz.scm (python-amqp): Update to 5.1.1.
[arguments]: New field.
[native-inputs]: Add python-pytest.
master
Maxim Cournoyer 2022-04-19 15:01:13 -04:00
parent 8f3eb93cb0
commit e8dc6ec5d8
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 14 additions and 5 deletions

View File

@ -15673,18 +15673,27 @@ and provides a uniform API regardless of which JSON implementation is used.")
(define-public python-amqp (define-public python-amqp
(package (package
(name "python-amqp") (name "python-amqp")
(version "5.0.7") (version "5.1.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "amqp" version)) (uri (pypi-uri "amqp" version))
(sha256 (sha256
(base32 "0p9alyinl24z699w4gpd8wvn90sm2il1p0gfwdhbpinksy7vfmyp")))) (base32 "1qmmffiy48nady7is8529vxcyqbq88v5zgawqr3fk4q8rkz166rc"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:tests? #f)) ; not compatible with pytest>=6 as of 5.0.7 (list
(propagated-inputs #:phases
(list python-vine)) #~(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-vv"
"-c" "/dev/null" ;take control over pytest options
;; Integration tests require network connectivity.
"--ignore" "t/integration")))))))
(native-inputs (list python-pytest))
(propagated-inputs (list python-vine))
(home-page "https://github.com/celery/py-amqp") (home-page "https://github.com/celery/py-amqp")
(synopsis "Low-level AMQP client for Python (fork of amqplib)") (synopsis "Low-level AMQP client for Python (fork of amqplib)")
(description (description