mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-etcd3.
* gnu/packages/python-xyz.scm (python-etcd3): New variable. Change-Id: Ic41bfd08d26c549dcaab4043448fe93a506e7a95 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
b462f091d1
commit
a8d58a7056
1 changed files with 30 additions and 0 deletions
|
@ -275,6 +275,7 @@
|
||||||
#:use-module (gnu packages rdf)
|
#:use-module (gnu packages rdf)
|
||||||
#:use-module (gnu packages readline)
|
#:use-module (gnu packages readline)
|
||||||
#:use-module (gnu packages regex)
|
#:use-module (gnu packages regex)
|
||||||
|
#:use-module (gnu packages rpc)
|
||||||
#:use-module (gnu packages rust)
|
#:use-module (gnu packages rust)
|
||||||
#:use-module (gnu packages rust-apps)
|
#:use-module (gnu packages rust-apps)
|
||||||
#:use-module (gnu packages scanner)
|
#:use-module (gnu packages scanner)
|
||||||
|
@ -5854,6 +5855,35 @@ command-line script you can get the latest strip of a webcomic, catch-up to the
|
||||||
downloaded, or download a strip for a particular date or index, if possible.")
|
downloaded, or download a strip for a particular date or index, if possible.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-etcd3
|
||||||
|
(package
|
||||||
|
(name "python-etcd3")
|
||||||
|
(version "0.12.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/kragniz/python-etcd3")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "06hw0kcl77v8px5w2hfnf2l9gjnjrspjb49kx3jqa382z7wzdkk0"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
;; XXX: Tests require the etcd package.
|
||||||
|
#:tests? #f
|
||||||
|
#:test-backend #~'custom
|
||||||
|
#:test-flags ; Taken from tox.ini.
|
||||||
|
#~(list "pifpaf" "-e" "python" "run" "etcd" "--cluster" "--" "pytest")))
|
||||||
|
(propagated-inputs (list python-grpcio python-protobuf python-tenacity))
|
||||||
|
(native-inputs (list python-mock python-pifpaf python-pytest python-setuptools))
|
||||||
|
(home-page "https://github.com/kragniz/python-etcd3")
|
||||||
|
(synopsis "Python client for the etcd3 API")
|
||||||
|
(description
|
||||||
|
"This package provide a Python client for the @code{etcd3} API.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public python-et-xmlfile
|
(define-public python-et-xmlfile
|
||||||
(package
|
(package
|
||||||
(name "python-et-xmlfile")
|
(name "python-et-xmlfile")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue