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:
Maxim Cournoyer 2021-10-31 20:58:03 -04:00
parent 29f898a99f
commit 59dd9218fb
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -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)