summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-23 15:38:07 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-28 14:55:12 +0000
commit1c07cf709a2a1e9606ebc5a1a6c2393290dedd34 (patch)
tree2dce7b5b11f4fbfdf2ade2fbbf3a1052ec54500f /gnu/packages/python-web.scm
parentbad9bf88356b86a7f30de5a311b9407e58b15ed2 (diff)
gnu: python-oauth2client: Update to 4.1.3.
* gnu/packages/python-web.scm (python-oauth2client): Update to 4.1.3. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: I90071beb487b8009c86b7ca0262dbf7d7c6598aa Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm18
1 files changed, 11 insertions, 7 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index d12f59031bd..d6c1608f0fa 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -8025,17 +8025,21 @@ users' sessions over extended periods of time.")
(define-public python-oauth2client
(package
(name "python-oauth2client")
- (version "4.0.0")
+ (version "4.1.3")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "oauth2client" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/google/oauth2client/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "1irqqap2zibysf8dba8sklfqikia579srd0phm5n754ni0h59gl0"))))
- (build-system python-build-system)
+ (base32 "0xm19dv5kmi82zzrx3d4mp326irr3x37q818hlspz514dzjq2ad1"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:tests? #f))
+ (list #:tests? #f))
+ (native-inputs
+ (list python-setuptools))
(propagated-inputs
(list python-httplib2
python-pyasn1