guix_mirror_bot pushed a commit to branch master
in repository guix.
commit d982a770b7b6d143447d58769368ca9041a21198
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Oct 28 17:47:58 2025 +0100
gnu: python-billiard: Update to 4.2.2.
* gnu/packages/python-xyz.scm (python-billiard): Update to 4.2.2.
[source]: Switch to git-fetch.
[arguments]: Improve style.
[native-inputs]: Remove python-wheel.
Change-Id: Ibe2be878c8fd16b041332b0bbeb68b59e0ece96f
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 28 ++++++++++++++++------------
1 file changed, 16 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7d182438ea..781a2b8ae1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20304,23 +20304,27 @@ RabbitMQ messaging server is the most popular
implementation.")
(define-public python-billiard
(package
(name "python-billiard")
- (version "4.2.0")
+ (version "4.2.2")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "billiard" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/celery/billiard")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "0b2svqx81511m0k2swjkybcx69f541dzd4rgfdxa2ni7rf232g4s"))))
+ (base32 "1p08w9msiajhg23ifcgnkv8jlbnh3ip3qhxahl5q0338sk4kah19"))))
(build-system pyproject-build-system)
(arguments
- (list #:phases #~(modify-phases %standard-phases
- (add-after 'unpack 'remove-win-files
- (lambda _
- (for-each delete-file-recursively
- '("billiard/popen_spawn_win32.py"
- "billiard/_win.py")))))))
- (native-inputs
- (list python-psutil python-pytest python-setuptools python-wheel))
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-win-files
+ (lambda _
+ (for-each delete-file-recursively
+ '("billiard/popen_spawn_win32.py"
+ "billiard/_win.py")))))))
+ (native-inputs (list python-psutil python-pytest python-setuptools))
(home-page "https://github.com/celery/billiard")
(synopsis "Python multiprocessing fork with improvements and bugfixes")
(description