~ruther/guix-local

b86e05377c4b8da6fa60282ce81cce81588044e8 — Nicolas Graves 6 months ago acf6da0
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 <sharlatanus@gmail.com>
1 files changed, 10 insertions(+), 9 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +10 -9
@@ 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