mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: docker-compose: Add required Python dependencies.
* gnu/packages/python-xyz.scm (python-jsonschema-2.6): New old public variable. * gnu/packages/docker.scm (docker-compose)[inputs]: Add python-docker-pycreds and use python-jsonschema-2.6.
This commit is contained in:
parent
10a3297389
commit
914bba2809
2 changed files with 30 additions and 1 deletions
|
@ -91,6 +91,8 @@ pseudo-terminal (PTY) allocated to a Docker container using the Python
|
|||
client.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
;; When updating, check whether python-jsonschema-2.6 can be removed from Guix
|
||||
;; entirely.
|
||||
(define-public docker-compose
|
||||
(package
|
||||
(name "docker-compose")
|
||||
|
@ -107,9 +109,10 @@ client.")
|
|||
(arguments '(#:tests? #f))
|
||||
(inputs
|
||||
`(("python-docker-py" ,python-docker-py)
|
||||
("python-docker-pycreds" ,python-docker-pycreds)
|
||||
("python-dockerpty" ,python-dockerpty)
|
||||
("python-docopt" ,python-docopt)
|
||||
("python-jsonschema" ,python-jsonschema)
|
||||
("python-jsonschema" ,python-jsonschema-2.6)
|
||||
("python-pyyaml" ,python-pyyaml)
|
||||
("python-requests" ,python-requests-2.7)
|
||||
("python-six" ,python-six)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue