diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-20 19:36:58 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-20 20:25:24 +0100 |
| commit | f2b9ba472175e884150e27b891e1ca8b66591a57 (patch) | |
| tree | 0935ae7546b073484cdbc2430af9195bdc8dd7b0 | |
| parent | b08f7a7b315e5fa8f261abaa98366f28466cc771 (diff) | |
gnu: python-rbfly: Update to 0.11.0.
* gnu/packages/python-xyz.scm (python-rbfly): Update to 0.11.0.
[arguments] <test-flags>: Keep options, skip one test on 32bit
systems.
[phases]{remove-local-source}: New phase.
[native-inputs]: Remove python-wheel.
Change-Id: I38584474a8e2f952c66c77d1c3b751bed00e124a
| -rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0790da5ead..fb03821930 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26032,24 +26032,33 @@ executed more than a given number of times during a given period.") (define-public python-rbfly (package (name "python-rbfly") - (version "0.10.0") + (version "0.11.0") (source (origin (method url-fetch) (uri (pypi-uri "rbfly" version)) (sha256 - (base32 "019fs94qzbxb43vahcm0va53m5d4nxrib5pkl29m4hx9adcccpf6")))) + (base32 "12xwf8zdvc5pf4nlpblml3jbn3gksgkyw9zw6jfsrvddv3hsm1b0")))) (build-system pyproject-build-system) (arguments (list - #:test-flags #~(list "-o" "addopts=''" "--pyargs" "rbfly"))) + #:test-flags + #~(list "--pyargs" "rbfly" + #$@(if (target-64bit?) + '() + '((string-append "--deselect=tests/amqp/test_message.py" + "::test_encode_amqp_string_too_long")))) + #:phases + #~(modify-phases %standard-phases + (add-before 'check 'remove-local-source + (lambda _ + (delete-file-recursively "rbfly")))))) (native-inputs (list python-cython python-pytest python-pytest-asyncio python-pytest-timeout - python-setuptools - python-wheel)) + python-setuptools)) (home-page "https://wrobell.dcmod.org/rbfly/") (synopsis "Work with RabbitMQ Streams in Python") (description |
