gnu: python-docker-py: Update to 3.7.3.
* gnu/packages/docker.scm (python-docker-py): Update to 3.7.3. [inputs]: Use PYTHON-REQUESTS-2.20 instead of PYTHON-REQUESTS. Add PYTHON-DOCKER-PYCREDS, PYTHON-IPADDRESS, PYTHON-PARAMIKO, and PYTHON-URLLIB3-1.24. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
8bb591d426
commit
3146b6da6d
|
@ -39,6 +39,7 @@
|
||||||
#:use-module (gnu packages networking)
|
#:use-module (gnu packages networking)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages python)
|
#:use-module (gnu packages python)
|
||||||
|
#:use-module (gnu packages python-crypto)
|
||||||
#:use-module (gnu packages python-web)
|
#:use-module (gnu packages python-web)
|
||||||
#:use-module (gnu packages python-xyz)
|
#:use-module (gnu packages python-xyz)
|
||||||
#:use-module (gnu packages version-control)
|
#:use-module (gnu packages version-control)
|
||||||
|
@ -49,20 +50,24 @@
|
||||||
(define-public python-docker-py
|
(define-public python-docker-py
|
||||||
(package
|
(package
|
||||||
(name "python-docker-py")
|
(name "python-docker-py")
|
||||||
(version "1.10.6")
|
(version "3.7.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "docker-py" version))
|
(uri (pypi-uri "docker" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"05f49f6hnl7npmi7kigg0ibqk8s3fhzx1ivvz1kqvlv4ay3paajc"))))
|
"0qmrcvpaz37p85hfddsd4yc8hgqlkzs4cz09q9wmy0pz5pwajqm0"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
;; TODO: Tests require a running Docker daemon.
|
;; TODO: Tests require a running Docker daemon.
|
||||||
(arguments '(#:tests? #f))
|
(arguments '(#:tests? #f))
|
||||||
(inputs
|
(inputs
|
||||||
`(("python-requests" ,python-requests)
|
`(("python-requests" ,python-requests-2.20)
|
||||||
|
("python-docker-pycreds" ,python-docker-pycreds)
|
||||||
|
("python-ipaddress" ,python-ipaddress)
|
||||||
|
("python-paramiko" ,python-paramiko)
|
||||||
("python-six" ,python-six)
|
("python-six" ,python-six)
|
||||||
|
("python-urllib3" ,python-urllib3-1.24)
|
||||||
("python-websocket-client" ,python-websocket-client)))
|
("python-websocket-client" ,python-websocket-client)))
|
||||||
(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")
|
||||||
|
|
Loading…
Reference in New Issue