gnu: python-cleo: Update to 0.6.1.
* gnu/packages/databases.scm (python-cleo): Update to 0.6.1. [native-inputs]: Add python-pytest-mock. [propagated-inputs]: Add python-backpack, python-pastel. Remove python-psutil.
This commit is contained in:
parent
f76d56d286
commit
5eebe8dcf7
|
@ -80,6 +80,7 @@
|
||||||
#:use-module (gnu packages gl)
|
#:use-module (gnu packages gl)
|
||||||
#:use-module (gnu packages glib)
|
#:use-module (gnu packages glib)
|
||||||
#:use-module (gnu packages graphviz)
|
#:use-module (gnu packages graphviz)
|
||||||
|
#:use-module (gnu packages graphics)
|
||||||
#:use-module (gnu packages gstreamer)
|
#:use-module (gnu packages gstreamer)
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages icu4c)
|
#:use-module (gnu packages icu4c)
|
||||||
|
@ -11983,20 +11984,22 @@ Wikipedia code samples at
|
||||||
(define-public python-cleo
|
(define-public python-cleo
|
||||||
(package
|
(package
|
||||||
(name "python-cleo")
|
(name "python-cleo")
|
||||||
(version "0.4.1")
|
(version "0.6.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "cleo" version))
|
(uri (pypi-uri "cleo" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1k2dcl6mqpn5bljyl6w42rqyd9mb3y9kh2mg7m2x3kfjwvg0rpva"))))
|
"0q1cf0szr0d54am4pypzwdnm74zpladdsinad94c2fz5i06fdpf7"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(;; For testing
|
`(;; For testing
|
||||||
("python-mock" ,python-mock)
|
("python-mock" ,python-mock)
|
||||||
|
("python-pytest-mock" ,python-pytest-mock)
|
||||||
("python-pytest" ,python-pytest)))
|
("python-pytest" ,python-pytest)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-psutil" ,python-psutil)
|
`(("python-backpack" ,python-backpack)
|
||||||
|
("python-pastel" ,python-pastel)
|
||||||
("python-pylev" ,python-pylev)))
|
("python-pylev" ,python-pylev)))
|
||||||
(home-page "https://github.com/sdispater/cleo")
|
(home-page "https://github.com/sdispater/cleo")
|
||||||
(synopsis "Command-line arguments library for Python")
|
(synopsis "Command-line arguments library for Python")
|
||||||
|
|
Loading…
Reference in New Issue