diff options
author | Vinicius Monego <monego@posteo.net> | 2024-07-13 09:57:28 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2024-07-28 11:00:53 -0300 |
commit | fdc6274de5b1d617fcabb3f3af9d2c0dd2a6520d (patch) | |
tree | b8b8c0c5a7db6151f3e30df2ea283d19d6ddb4bd /gnu | |
parent | a268e94bf2fd78023ef75498adcd213dc84a2ea6 (diff) | |
download | guix-fdc6274de5b1d617fcabb3f3af9d2c0dd2a6520d.tar guix-fdc6274de5b1d617fcabb3f3af9d2c0dd2a6520d.tar.gz |
gnu: python-celery: Update to 5.4.0.
* gnu/packages/python-xyz.scm (python-celery): Update to 5.4.0.
[native-inputs]: Add python-google-cloud-storage.
Change-Id: I9ddb215661491deaab0d8dc31207cd3043637d21
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f80f4cbc50..5541732887 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -19566,13 +19566,13 @@ 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.3.6") + (version "5.4.0") (source (origin (method url-fetch) (uri (pypi-uri "celery" version)) (sha256 - (base32 "1fdacw13ij94s59l6lspl09iv6fc8h1p6399jz1h00kwfcfwf347")))) + (base32 "01p7lyydhqk7fna5zn49qxj3yk0xah63725dmkajjc4d1qa1jjjh")))) (build-system pyproject-build-system) (arguments (list @@ -19594,6 +19594,7 @@ Python 2.4 and 2.5, and will draw its fixes/improvements from python-trunk.") (list python-case python-dnspython python-flaky + python-google-cloud-storage python-iniconfig python-moto python-msgpack |