[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: python-docker: Update to 7.0.0.
From: |
guix-commits |
Subject: |
branch master updated: gnu: python-docker: Update to 7.0.0. |
Date: |
Sun, 10 Mar 2024 21:18:17 -0400 |
This is an automated email from the git hooks/post-receive script.
arunisaac pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new d084fb4b04 gnu: python-docker: Update to 7.0.0.
d084fb4b04 is described below
commit d084fb4b04a1cebb59959633660013fff495cd0d
Author: Arun Isaac <arunisaac@systemreboot.net>
AuthorDate: Mon Feb 26 19:27:10 2024 +0000
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
---
gnu/packages/docker.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm
index 0fe1f2c1c7..0820f685b7 100644
--- a/gnu/packages/docker.scm
+++ b/gnu/packages/docker.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2020 Jesse Dowell <jessedowell@gmail.com>
;;; Copyright © 2021, 2022 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2022 Pierre Langlois <pierre.langlois@gmx.com>
+;;; Copyright © 2024 Arun Isaac <arunisaac@systemreboot.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -47,6 +48,7 @@
#:use-module (gnu packages networking)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python)
+ #:use-module (gnu packages python-build)
#:use-module (gnu packages python-crypto)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
@@ -60,22 +62,24 @@
(define-public python-docker
(package
(name "python-docker")
- (version "5.0.3")
+ (version "7.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "docker" version))
(sha256
(base32
- "1yr7w8vmdis01myx26pqx7wcyz2cy1mfs421alppq3lpc9ms45nr"))))
+ "18z5wzqm7dbxaa5q4gs8yh2dma8i7savqcvibvy1i56djbxkcdrj"))))
(build-system python-build-system)
;; TODO: Tests require a running Docker daemon.
(arguments '(#:tests? #f))
(inputs
(list python-requests python-six python-urllib3))
+ (native-inputs
+ (list python-setuptools-scm))
(propagated-inputs
(list python-docker-pycreds python-paramiko ;adds SSH support
- python-websocket-client))
+ python-packaging python-websocket-client))
(home-page "https://github.com/docker/docker-py/")
(synopsis "Python client for Docker")
(description "Docker-Py is a Python client for the Docker container
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: python-docker: Update to 7.0.0.,
guix-commits <=