guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit e8575a81d8bf59bffa0cade01212a381c61653de
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Tue Mar 3 20:59:54 2026 +0100
gnu: python-httplib2: Update to 0.31.2.
* gnu/packages/python-web.scm (python-httplib2): Update to 0.31.2.
[propagated-inputs]: Add python-pyparsing and python-pysocks.
[native-inputs]: Remove python-future and python-pyparsing.
Change-Id: I6d8272b1ffa00fa54d1fd72f21202fe6f7464c66
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-web.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index eb3b84d8cd..ffdcfd4338 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3291,10 +3291,9 @@ origin than that of the web application.")
(define-public python-httplib2
(package
(name "python-httplib2")
- (version "0.22.0")
+ (version "0.31.2")
(source
(origin
- ;; Tests not included in the release tarball.
(method git-fetch)
(uri (git-reference
(url "https://github.com/httplib2/httplib2")
@@ -3302,7 +3301,7 @@ origin than that of the web application.")
(file-name (git-file-name name version))
(sha256
(base32
- "1zkp3glv0iha7p68p5m0sb8mrrammkdc0mx32517xry52s4iva7g"))))
+ "0wdnf4rhw9ar8b15lzvif11ibnnpqkfif3alkhkfywy3ikk8nrxb"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -3312,11 +3311,12 @@ origin than that of the web application.")
(lambda _
(substitute* "requirements-test.txt"
(("==") ">=")))))))
+ (propagated-inputs
+ (list python-pyparsing
+ python-pysocks))
(native-inputs
(list python-cryptography
- python-future
python-mock
- python-pyparsing
python-pytest
python-pytest-cov
python-pytest-randomly