diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-12-20 22:12:22 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-12-21 02:26:48 +0100 |
commit | a22c66c94c6ff29df3b01da6dc111d49da4ad12e (patch) | |
tree | 682c01e8b83fdbcd12111b447e43aa513d5d7d71 /gnu/packages | |
parent | 4f837f30454e4b4f81d567054f077461155c92dd (diff) | |
download | guix-a22c66c94c6ff29df3b01da6dc111d49da4ad12e.tar.gz guix-a22c66c94c6ff29df3b01da6dc111d49da4ad12e.zip |
gnu: python-amqp: Fix build.
* gnu/packages/python-xyz.scm (python-amqp)[arguments]<#:test-flags>: Fix
specification of ignore.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: I7e8f0409317ce62e528a1bd224381a295bbf4821
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 74976f71c5..02547489b7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -20481,8 +20481,8 @@ and provides a uniform API regardless of which JSON implementation is used.") (build-system pyproject-build-system) (arguments (list ; Integration tests require network connectivity. - #:test-flags '(list "--ignore=t/integration"))) - (native-inputs (list python-pytest)) + #:test-flags '(list "--ignore=t/integration/test_rmq.py"))) + (native-inputs (list python-pytest python-setuptools python-wheel)) (propagated-inputs (list python-vine)) (home-page "https://github.com/celery/py-amqp") (synopsis "Low-level AMQP client for Python (fork of amqplib)") |