mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-09 04:42:01 +01:00
gnu: docker-compose: Update to 1.29.2.
* gnu/packages/docker.scm (docker-compose): Update to 1.29.2. [inputs]: Add python-dotenv and python-distro.
This commit is contained in:
parent
29f898a99f
commit
59dd9218fb
1 changed files with 5 additions and 4 deletions
|
@ -106,23 +106,24 @@ client.")
|
||||||
(define-public docker-compose
|
(define-public docker-compose
|
||||||
(package
|
(package
|
||||||
(name "docker-compose")
|
(name "docker-compose")
|
||||||
(version "1.25.4")
|
(version "1.29.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "docker-compose" version))
|
(uri (pypi-uri "docker-compose" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ww8ckpj3n5jdg63qvmiqx3gk0fsrnynnnqj17fppymbwjzf5fps"))))
|
"1dq9kfak61xx7chjrzmkvbw9mvj9008k7g8q7mwi4x133p9dk32c"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
;; TODO: Tests require running Docker daemon.
|
;; TODO: Tests require running Docker daemon.
|
||||||
(arguments '(#:tests? #f))
|
(arguments '(#:tests? #f))
|
||||||
(inputs
|
(inputs
|
||||||
`(("python-cached-property"
|
`(("python-cached-property" ,python-cached-property)
|
||||||
,python-cached-property)
|
("python-distro" ,python-distro)
|
||||||
("python-docker" ,python-docker)
|
("python-docker" ,python-docker)
|
||||||
("python-dockerpty" ,python-dockerpty)
|
("python-dockerpty" ,python-dockerpty)
|
||||||
("python-docopt" ,python-docopt)
|
("python-docopt" ,python-docopt)
|
||||||
|
("python-dotenv" ,python-dotenv)
|
||||||
("python-jsonschema" ,python-jsonschema)
|
("python-jsonschema" ,python-jsonschema)
|
||||||
("python-pyyaml" ,python-pyyaml)
|
("python-pyyaml" ,python-pyyaml)
|
||||||
("python-requests" ,python-requests)
|
("python-requests" ,python-requests)
|
||||||
|
|
Loading…
Add table
Reference in a new issue