1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: python-rq: Update to 2.6.1.

* gnu/packages/databases.scm (python-rq): Update to 2.6.1.
[propagated-inputs]: Add python-croniter.

Change-Id: Iab464919a5a336ef8e7377a6ee99d0a867f320f4
This commit is contained in:
Sharlatan Hellseher
2026-02-05 12:26:49 +00:00
committed by Andreas Enge
parent eb42987949
commit c6614e132f

View File

@@ -5092,19 +5092,20 @@ test_xgroup_create_entriesread")
(define-public python-rq
(package
(name "python-rq")
(version "2.3.1")
(version "2.6.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rq/rq")
(commit (string-append "v" version))))
(url "https://github.com/rq/rq")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1w9aqvbvh1mfpgng0mdcskxl5y3ybcqqai5dnwgvg18am0xxhya6"))))
(base32 "0n2bn9awd3sbl9bkz0h7y8c356w0n7fdhifzfvzylrx2jggczv73"))))
(build-system pyproject-build-system)
(arguments
(list
;; tests: 520 passed, 16 skipped, 76 warnings
#:phases #~(modify-phases %standard-phases
(add-before 'check 'start-redis
(lambda _
@@ -5116,7 +5117,9 @@ test_xgroup_create_entriesread")
python-pytest
redis))
(propagated-inputs
(list python-click python-redis))
(list python-click
python-croniter
python-redis))
(home-page "https://python-rq.org/")
(synopsis "Simple job queues for Python")
(description