From 4069add1a062aad1f6b69b9b98fb5d02e524cd32 Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sat, 28 Jun 2025 12:14:53 -0300 Subject: [PATCH] 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 --- gnu/packages/docker.scm | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm index 630fc1750b..4f1e6b1cfa 100644 --- a/gnu/packages/docker.scm +++ b/gnu/packages/docker.scm @@ -10,6 +10,7 @@ ;;; Copyright © 2022 Pierre Langlois ;;; Copyright © 2024 Nicolas Graves ;;; Copyright © 2025 Artyom V. Poptsov +;;; Copyright © 2025 Vinicius Monego ;;; ;;; This file is part of GNU Guix. ;;; @@ -66,21 +67,22 @@ (define-public python-docker (package (name "python-docker") - (version "5.0.3") + (version "7.1.0") (source (origin (method url-fetch) (uri (pypi-uri "docker" version)) (sha256 (base32 - "1yr7w8vmdis01myx26pqx7wcyz2cy1mfs421alppq3lpc9ms45nr")))) - (build-system python-build-system) + "0v7s8q2j0khqcd32h50whgi9jlpanhrbh696m6w6r4pqwgk7135d")))) + (build-system pyproject-build-system) ;; TODO: Tests require a running Docker daemon. (arguments '(#:tests? #f)) + (native-inputs (list python-hatch-vcs python-hatchling)) (inputs - (list python-requests python-six python-urllib3)) + (list python-requests python-urllib3)) (propagated-inputs - (list python-docker-pycreds python-paramiko ;adds SSH support + (list python-paramiko ;adds SSH support python-websocket-client)) (home-page "https://github.com/docker/docker-py/") (synopsis "Python client for Docker")