mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: python-docker-py: Propagate dependencies.
* gnu/packages/docker.scm (python-docker-py)[inputs]: Move python-docker-pycreds and python-paramiko from here… [propagated-inputs]: …to here. (docker-compose)[inputs]: Remove them.
This commit is contained in:
parent
e643d90f0f
commit
d12578f2e2
1 changed files with 3 additions and 4 deletions
|
@ -63,12 +63,13 @@ (define-public python-docker-py
|
||||||
(arguments '(#:tests? #f))
|
(arguments '(#:tests? #f))
|
||||||
(inputs
|
(inputs
|
||||||
`(("python-requests" ,python-requests-2.20)
|
`(("python-requests" ,python-requests-2.20)
|
||||||
("python-docker-pycreds" ,python-docker-pycreds)
|
|
||||||
("python-ipaddress" ,python-ipaddress)
|
("python-ipaddress" ,python-ipaddress)
|
||||||
("python-paramiko" ,python-paramiko)
|
|
||||||
("python-six" ,python-six)
|
("python-six" ,python-six)
|
||||||
("python-urllib3" ,python-urllib3-1.24)
|
("python-urllib3" ,python-urllib3-1.24)
|
||||||
("python-websocket-client" ,python-websocket-client)))
|
("python-websocket-client" ,python-websocket-client)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-docker-pycreds" ,python-docker-pycreds)
|
||||||
|
("python-paramiko" ,python-paramiko))) ; adds SSH support
|
||||||
(home-page "https://github.com/docker/docker-py/")
|
(home-page "https://github.com/docker/docker-py/")
|
||||||
(synopsis "Python client for Docker")
|
(synopsis "Python client for Docker")
|
||||||
(description "Docker-Py is a Python client for the Docker container
|
(description "Docker-Py is a Python client for the Docker container
|
||||||
|
@ -118,11 +119,9 @@ (define-public docker-compose
|
||||||
("python-cached-property"
|
("python-cached-property"
|
||||||
,python-cached-property)
|
,python-cached-property)
|
||||||
("python-docker-py" ,python-docker-py)
|
("python-docker-py" ,python-docker-py)
|
||||||
("python-docker-pycreds" ,python-docker-pycreds)
|
|
||||||
("python-dockerpty" ,python-dockerpty)
|
("python-dockerpty" ,python-dockerpty)
|
||||||
("python-docopt" ,python-docopt)
|
("python-docopt" ,python-docopt)
|
||||||
("python-ipaddress" ,python-ipaddress)
|
("python-ipaddress" ,python-ipaddress)
|
||||||
("python-paramiko" ,python-paramiko)
|
|
||||||
("python-jsonschema" ,python-jsonschema-2.6)
|
("python-jsonschema" ,python-jsonschema-2.6)
|
||||||
("python-pyyaml" ,python-pyyaml)
|
("python-pyyaml" ,python-pyyaml)
|
||||||
("python-requests" ,python-requests-2.20)
|
("python-requests" ,python-requests-2.20)
|
||||||
|
|
Loading…
Reference in a new issue