diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-01-13 09:51:53 +0000 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:23:54 +0100 |
| commit | 747028c4bdcdaa14564fc99e2cb3f04a948ea5d5 (patch) | |
| tree | be04cdf5c015c9128ca3b6e881f3891dad624d3f | |
| parent | 7571448719decdbe16816cf6da95215468f1f887 (diff) | |
gnu: python-kombu: Update to 5.6.0.
* gnu/packages/python-xyz.scm (python-kombu): Update to 5.6.0.
[phases]{relax-requirements}: Specify which version of tzdata we are
relaxing.
[propagated-inputs]: Remove python-typing-extensions; add
python-packaging and python-tzdata.
[native-inputs]: Remove python-tzdata; add python-pytest-freezer.
Change-Id: I8a9793e5b269480aa180d5de928e85a9ea1511f4
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
| -rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 75740bb916b..36bd95b4ca9 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -20669,7 +20669,7 @@ or compiler for Python.") (define-public python-kombu (package (name "python-kombu") - (version "5.5.4") + (version "5.6.0") (source (origin (method git-fetch) @@ -20678,10 +20678,11 @@ or compiler for Python.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1fzpnwr3rhyf4fis1xmbdwlz40j9c09zpzzrchwxcvwsc6r45mcj")))) + (base32 "10h73mxfqy8g02bmibc9m2xklcm4pxc9r674c8l6j0v2igf3ycmb")))) (build-system pyproject-build-system) (arguments (list + ;; tests: 854 passed, 196 skipped #:test-flags #~(list ;; TODO: Package azure-identity (required for this file) @@ -20693,17 +20694,20 @@ or compiler for Python.") (add-after 'unpack 'relax-requirements (lambda _ (substitute* "requirements/default.txt" - (("^tzdata.*") - "tzdata\n"))))))) + (("tzdata>=2025.2") + "tzdata>=2025.1"))))))) (native-inputs (list python-botocore python-pyro4 python-pytest + python-pytest-freezer python-pytest-sugar - python-setuptools - python-tzdata)) + python-setuptools)) (propagated-inputs - (list python-amqp python-typing-extensions python-vine)) + (list python-amqp + python-packaging + python-tzdata + python-vine)) (home-page "https://kombu.readthedocs.io") (synopsis "Message passing library for Python") (description |
