diff options
| author | Vinicius Monego <monego@posteo.net> | 2025-06-28 12:14:53 -0300 |
|---|---|---|
| committer | Vinicius Monego <monego@posteo.net> | 2025-06-29 00:04:45 -0300 |
| commit | 4069add1a062aad1f6b69b9b98fb5d02e524cd32 (patch) | |
| tree | a027398c38fa3c2bffaf55815ab53a2760bbc1ad /gnu/packages/docker.scm | |
| parent | 1e44e976e7f01defc9bb0bfe8153bb6470cc2c32 (diff) | |
gnu: python-docker: Update to 7.1.0.
* gnu/packages/docker.scm (python-docker): Update to 7.1.0.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-hatch-vcs, python-hatchling.
[inputs]: Remove python-six.
[propagated-inputs]: Remove python-docker-pycreds.
Change-Id: I921f9aa9bbaf582f0c2282acbb704846a6b31fb8
Diffstat (limited to 'gnu/packages/docker.scm')
| -rw-r--r-- | gnu/packages/docker.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm index 630fc1750b3..4f1e6b1cfa4 100644 --- a/gnu/packages/docker.scm +++ b/gnu/packages/docker.scm | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | ;;; Copyright © 2022 Pierre Langlois <pierre.langlois@gmx.com> | 10 | ;;; Copyright © 2022 Pierre Langlois <pierre.langlois@gmx.com> |
| 11 | ;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr> | 11 | ;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr> |
| 12 | ;;; Copyright © 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com> | 12 | ;;; Copyright © 2025 Artyom V. Poptsov <poptsov.artyom@gmail.com> |
| 13 | ;;; Copyright © 2025 Vinicius Monego <monego@posteo.net> | ||
| 13 | ;;; | 14 | ;;; |
| 14 | ;;; This file is part of GNU Guix. | 15 | ;;; This file is part of GNU Guix. |
| 15 | ;;; | 16 | ;;; |
| @@ -66,21 +67,22 @@ | |||
| 66 | (define-public python-docker | 67 | (define-public python-docker |
| 67 | (package | 68 | (package |
| 68 | (name "python-docker") | 69 | (name "python-docker") |
| 69 | (version "5.0.3") | 70 | (version "7.1.0") |
| 70 | (source | 71 | (source |
| 71 | (origin | 72 | (origin |
| 72 | (method url-fetch) | 73 | (method url-fetch) |
| 73 | (uri (pypi-uri "docker" version)) | 74 | (uri (pypi-uri "docker" version)) |
| 74 | (sha256 | 75 | (sha256 |
| 75 | (base32 | 76 | (base32 |
| 76 | "1yr7w8vmdis01myx26pqx7wcyz2cy1mfs421alppq3lpc9ms45nr")))) | 77 | "0v7s8q2j0khqcd32h50whgi9jlpanhrbh696m6w6r4pqwgk7135d")))) |
| 77 | (build-system python-build-system) | 78 | (build-system pyproject-build-system) |
| 78 | ;; TODO: Tests require a running Docker daemon. | 79 | ;; TODO: Tests require a running Docker daemon. |
| 79 | (arguments '(#:tests? #f)) | 80 | (arguments '(#:tests? #f)) |
| 81 | (native-inputs (list python-hatch-vcs python-hatchling)) | ||
| 80 | (inputs | 82 | (inputs |
| 81 | (list python-requests python-six python-urllib3)) | 83 | (list python-requests python-urllib3)) |
| 82 | (propagated-inputs | 84 | (propagated-inputs |
| 83 | (list python-docker-pycreds python-paramiko ;adds SSH support | 85 | (list python-paramiko ;adds SSH support |
| 84 | python-websocket-client)) | 86 | python-websocket-client)) |
| 85 | (home-page "https://github.com/docker/docker-py/") | 87 | (home-page "https://github.com/docker/docker-py/") |
| 86 | (synopsis "Python client for Docker") | 88 | (synopsis "Python client for Docker") |
