guix_mirror_bot pushed a commit to branch master in repository guix. commit 20529b72e207ea0c184fbfad14c982f057d92bda Author: Nicolas Graves <ngra...@ngraves.fr> AuthorDate: Sat Sep 6 16:21:56 2025 +0200
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 <sharlata...@gmail.com> --- gnu/packages/python-web.scm | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 557478c83c..2c9ca96970 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