From f2b9ba472175e884150e27b891e1ca8b66591a57 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 20 May 2026 19:36:58 +0100 Subject: gnu: python-rbfly: Update to 0.11.0. * gnu/packages/python-xyz.scm (python-rbfly): Update to 0.11.0. [arguments] : Keep options, skip one test on 32bit systems. [phases]{remove-local-source}: New phase. [native-inputs]: Remove python-wheel. Change-Id: I38584474a8e2f952c66c77d1c3b751bed00e124a --- 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 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 -- cgit v1.3