apteryx pushed a commit to branch wip-ipython-polyglossia in repository guix.
commit 8a9ab8201942b1a79b6b571142d56255e6784203 Author: Maxim Cournoyer <[email protected]> AuthorDate: Tue Apr 19 15:01:13 2022 -0400 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. --- gnu/packages/python-xyz.scm | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 18aea5a53b..ced902b98c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15645,18 +15645,27 @@ and provides a uniform API regardless of which JSON implementation is used.") (define-public python-amqp (package (name "python-amqp") - (version "5.0.7") + (version "5.1.1") (source (origin (method url-fetch) (uri (pypi-uri "amqp" version)) (sha256 - (base32 "0p9alyinl24z699w4gpd8wvn90sm2il1p0gfwdhbpinksy7vfmyp")))) + (base32 "1qmmffiy48nady7is8529vxcyqbq88v5zgawqr3fk4q8rkz166rc")))) (build-system python-build-system) (arguments - `(#:tests? #f)) ; not compatible with pytest>=6 as of 5.0.7 - (propagated-inputs - (list python-vine)) + (list + #:phases + #~(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") (synopsis "Low-level AMQP client for Python (fork of amqplib)") (description
