summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-06 16:21:56 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-06 18:14:26 +0100
commit20529b72e207ea0c184fbfad14c982f057d92bda (patch)
treec32240461da3bfa55969cf6f88c73b6cc2164677
parent719976311a838d82fb79278f1fb4f48a2bef0ac2 (diff)
gnu: python-pyfxa: Update to 0.8.1.
* gnu/packages/python-web.scm (python-pyfxa): Update to 0.8.1. [propagated-inputs]: Add python-pyjwt, python-parameterized. [native-inputs]: Replace python-setuptools-next by python-hatchling. Change-Id: I37d296c1af42196ee23995c166cd98803724fa61 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/python-web.scm15
1 files changed, 8 insertions, 7 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 557478c83cc..2c9ca969703 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7630,16 +7630,16 @@ underlies Mozilla Persona.")
(define-public python-pyfxa
(package
(name "python-pyfxa")
- (version "0.6.0")
+ (version "0.8.1")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/mozilla/PyFxA")
- (commit (string-append "v" version))))
+ (url "https://github.com/mozilla/PyFxA")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1ag07qiqrmlhgyzfib2x7kzzgccj4lfs9q7jfc8f1g55783457bm"))))
+ (base32 "11iaw50x5ic9cqp3jwkvhk8mz00dhg8xhl1kkx45zrb8nnrfw2vs"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -7647,15 +7647,16 @@ underlies Mozilla Persona.")
#:test-flags #~(list "--ignore=fxa/tests/test_core.py")))
(propagated-inputs
(list python-cryptography
+ python-pyjwt
+ python-parameterized
python-hawkauthlib
- python-pybrowserid
python-requests))
(native-inputs
(list python-grequests
+ python-hatchling
python-mock
python-pytest
- python-responses
- python-setuptools-next))
+ python-responses))
(home-page "https://github.com/mozilla/PyFxA")
(synopsis "Firefox Accounts client library for Python")
(description