summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-11-30 16:58:50 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-04 21:49:57 +0000
commit39a5a5d309d77e16f04d3da35039a5a513a781c3 (patch)
tree88934953886e4a337fe0ace5910aa2104a030606 /gnu/packages/python-web.scm
parent6656a7896c3e3c8ed954cffda7aca10f00080e53 (diff)
gnu: python-oauthlib: Update to 3.3.1.
* gnu/packages/python-web.scm (python-oauthlib): Update to 3.3.1. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]: Drop them. [native-inputs]: Add python-setuptools. Change-Id: I1cf5e88607384a0542614b443f0e2b4a0e913fab Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm31
1 files changed, 14 insertions, 17 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 7e8ee741e3b..fdb55183fef 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -6856,23 +6856,20 @@ used as authentication in IMAP mail servers.")
(define-public python-oauthlib
(package
(name "python-oauthlib")
- (version "3.1.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "oauthlib" version))
- (sha256
- (base32
- "12gqnabwck30gdlpwm6af3s28qm9p2yc7b1w8s4fk9ncbz1irr5y"))))
- (build-system python-build-system)
- (arguments
- `(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (invoke "pytest" "-vv"))))))
- (native-inputs
- (list python-pytest python-pytest-cov python-mock))
- (propagated-inputs
- (list python-cryptography python-pyjwt python-blinker))
+ (version "3.3.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/oauthlib/oauthlib")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0aa38lpa6s1k56v7w7kw2w4l159kaz4gn03m698a8hfdjkx92fb5"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-pytest-cov python-mock
+ python-setuptools))
+ (propagated-inputs (list python-cryptography python-pyjwt python-blinker))
(home-page "https://github.com/oauthlib/oauthlib")
(synopsis "OAuth implementation for Python")
(description