guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b86e05377c4b8da6fa60282ce81cce81588044e8
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Oct 25 12:44:49 2025 +0200
gnu: python-kazoo: Update to 2.10.0.
* gnu/packages/python-xyz.scm (python-kazoo): Update to 2.10.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools.
[propagated-inputs]: Remove python-six.
Change-Id: I1c4ea45292653d188b3c143f5b52a9470e97c481
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3260b0e9e7..696d7ff71d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21603,18 +21603,19 @@ It uses LR parsing and does extensive error
checking.")
(define-public python-kazoo
(package
(name "python-kazoo")
- (version "2.8.0")
+ (version "2.10.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "kazoo" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/python-zk/kazoo")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "1zpj5cc8624w6i0pxgcxqkjwbkm4pkrv19d7wh5df3jais32g3jq"))))
- (build-system python-build-system)
- (arguments '(#:tests? #f)) ; XXX: needs zookeeper
- (propagated-inputs
- (list python-six))
+ (base32 "1ic1ky4v64jw59in02hqmyxskd98v32msd46pmsp39l7iighjrn2"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:tests? #f)) ; XXX: needs zookeeper
+ (native-inputs (list python-setuptools))
(home-page "https://kazoo.readthedocs.org")
(synopsis "High-level Zookeeper client library")
(description