1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-27 12:40:32 +02:00

gnu: python-celery: Update to 5.6.2.

* gnu/packages/python-xyz.scm (python-celery): Update to 5.6.2.
[arguments] <test-flags>: Skip one more test.
[phases]{relax-requirements}: Remove phase.
[propagated-inputs]: Remove python-tzdata; add python-tzlocal.
[native-inputs]: Add python-pytest-order.

Change-Id: I2b5978c5759b6290a86de1a31755468deba40282
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
This commit is contained in:
Sharlatan Hellseher
2026-01-13 09:51:55 +00:00
committed by Rutherther
parent 747028c4bd
commit eb3665d177

View File

@@ -20755,17 +20755,17 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
(define-public python-celery
(package
(name "python-celery")
(version "5.5.3")
(version "5.6.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "celery" version))
(sha256
(base32 "198hdgy2mk2h6nzhg78jqlhps0w4z6iw60bz4a0m4awcjvkjm5vc"))))
(base32 "16q0hlsw9p2mri1c1i2l4knq2d8hf83h4a9vglqpdbgjzk1j32aa"))))
(build-system pyproject-build-system)
(arguments
(list
;; tests: 3165 passed, 26 skipped, 6 deselected, 3 xfailed, 53 warnings,
;; tests: 3248 passed, 26 skipped, 8 deselected, 3 xfailed, 54 warnings,
;; 28958 subtests passed
#:test-flags
;; The MongoDB backend test appears to expect an older version of
@@ -20781,15 +20781,10 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
;; OSError: [Errno 24] Too many open files
"test_register_with_event_loop__no_on_tick_dupes"
"test_with_autoscaler_file_descriptor_safety"
"test_with_file_descriptor_safety")
" and not "))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'relax-requirements
(lambda _
(substitute* "requirements/default.txt"
(("^tzdata.*")
"tzdata\n")))))))
"test_with_file_descriptor_safety"
;; XXX: Fails to compare local timezones.
"test_use_local_timezone")
" and not "))))
(native-inputs
(list python-azure-core
python-dnspython
@@ -20803,6 +20798,7 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
python-pytest
python-pytest-celery
python-pytest-click
python-pytest-order
python-pytest-subtests
python-pytest-timeout
python-redis
@@ -20815,7 +20811,7 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.")
python-click-repl
python-dateutil
python-kombu
python-tzdata
python-tzlocal
python-vine))
(home-page "https://celeryproject.org")
(synopsis "Distributed Task Queue")