diff options
| author | Arun Isaac <arunisaac@systemreboot.net> | 2024-02-26 19:27:10 +0000 |
|---|---|---|
| committer | Arun Isaac <arunisaac@systemreboot.net> | 2024-03-10 23:58:10 +0000 |
| commit | d084fb4b04a1cebb59959633660013fff495cd0d (patch) | |
| tree | 8ce96e3be7cf5ff96c4740411894f9fe38224504 /gnu/packages/docker.scm | |
| parent | 5cf8904acf3215831933c7a614343d29ac8cd6dd (diff) | |
gnu: python-docker: Update to 7.0.0.
* gnu/packages/docker.scm (python-docker): Update to 7.0.0.
[native-inputs]: Add python-setuptools-scm.
[propagated-inputs]: Add python-packaging.
Change-Id: I1c23575836689e9bcdbcea22ea9d84520b0353a0
Diffstat (limited to 'gnu/packages/docker.scm')
| -rw-r--r-- | gnu/packages/docker.scm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm index 0fe1f2c1c77..0820f685b76 100644 --- a/gnu/packages/docker.scm +++ b/gnu/packages/docker.scm | |||
| @@ -8,6 +8,7 @@ | |||
| 8 | ;;; Copyright © 2020 Jesse Dowell <jessedowell@gmail.com> | 8 | ;;; Copyright © 2020 Jesse Dowell <jessedowell@gmail.com> |
| 9 | ;;; Copyright © 2021, 2022 Oleg Pykhalov <go.wigust@gmail.com> | 9 | ;;; Copyright © 2021, 2022 Oleg Pykhalov <go.wigust@gmail.com> |
| 10 | ;;; Copyright © 2022 Pierre Langlois <pierre.langlois@gmx.com> | 10 | ;;; Copyright © 2022 Pierre Langlois <pierre.langlois@gmx.com> |
| 11 | ;;; Copyright © 2024 Arun Isaac <arunisaac@systemreboot.net> | ||
| 11 | ;;; | 12 | ;;; |
| 12 | ;;; This file is part of GNU Guix. | 13 | ;;; This file is part of GNU Guix. |
| 13 | ;;; | 14 | ;;; |
| @@ -47,6 +48,7 @@ | |||
| 47 | #:use-module (gnu packages networking) | 48 | #:use-module (gnu packages networking) |
| 48 | #:use-module (gnu packages pkg-config) | 49 | #:use-module (gnu packages pkg-config) |
| 49 | #:use-module (gnu packages python) | 50 | #:use-module (gnu packages python) |
| 51 | #:use-module (gnu packages python-build) | ||
| 50 | #:use-module (gnu packages python-crypto) | 52 | #:use-module (gnu packages python-crypto) |
| 51 | #:use-module (gnu packages python-web) | 53 | #:use-module (gnu packages python-web) |
| 52 | #:use-module (gnu packages python-xyz) | 54 | #:use-module (gnu packages python-xyz) |
| @@ -60,22 +62,24 @@ | |||
| 60 | (define-public python-docker | 62 | (define-public python-docker |
| 61 | (package | 63 | (package |
| 62 | (name "python-docker") | 64 | (name "python-docker") |
| 63 | (version "5.0.3") | 65 | (version "7.0.0") |
| 64 | (source | 66 | (source |
| 65 | (origin | 67 | (origin |
| 66 | (method url-fetch) | 68 | (method url-fetch) |
| 67 | (uri (pypi-uri "docker" version)) | 69 | (uri (pypi-uri "docker" version)) |
| 68 | (sha256 | 70 | (sha256 |
| 69 | (base32 | 71 | (base32 |
| 70 | "1yr7w8vmdis01myx26pqx7wcyz2cy1mfs421alppq3lpc9ms45nr")))) | 72 | "18z5wzqm7dbxaa5q4gs8yh2dma8i7savqcvibvy1i56djbxkcdrj")))) |
| 71 | (build-system python-build-system) | 73 | (build-system python-build-system) |
| 72 | ;; TODO: Tests require a running Docker daemon. | 74 | ;; TODO: Tests require a running Docker daemon. |
| 73 | (arguments '(#:tests? #f)) | 75 | (arguments '(#:tests? #f)) |
| 74 | (inputs | 76 | (inputs |
| 75 | (list python-requests python-six python-urllib3)) | 77 | (list python-requests python-six python-urllib3)) |
| 78 | (native-inputs | ||
| 79 | (list python-setuptools-scm)) | ||
| 76 | (propagated-inputs | 80 | (propagated-inputs |
| 77 | (list python-docker-pycreds python-paramiko ;adds SSH support | 81 | (list python-docker-pycreds python-paramiko ;adds SSH support |
| 78 | python-websocket-client)) | 82 | python-packaging python-websocket-client)) |
| 79 | (home-page "https://github.com/docker/docker-py/") | 83 | (home-page "https://github.com/docker/docker-py/") |
| 80 | (synopsis "Python client for Docker") | 84 | (synopsis "Python client for Docker") |
| 81 | (description "Docker-Py is a Python client for the Docker container | 85 | (description "Docker-Py is a Python client for the Docker container |
