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.")
7630(define-public python-pyfxa 7630(define-public python-pyfxa
7631 (package 7631 (package
7632 (name "python-pyfxa") 7632 (name "python-pyfxa")
7633 (version "0.6.0") 7633 (version "0.8.1")
7634 (source 7634 (source
7635 (origin 7635 (origin
7636 (method git-fetch) 7636 (method git-fetch)
7637 (uri (git-reference 7637 (uri (git-reference
7638 (url "https://github.com/mozilla/PyFxA") 7638 (url "https://github.com/mozilla/PyFxA")
7639 (commit (string-append "v" version)))) 7639 (commit (string-append "v" version))))
7640 (file-name (git-file-name name version)) 7640 (file-name (git-file-name name version))
7641 (sha256 7641 (sha256
7642 (base32 "1ag07qiqrmlhgyzfib2x7kzzgccj4lfs9q7jfc8f1g55783457bm")))) 7642 (base32 "11iaw50x5ic9cqp3jwkvhk8mz00dhg8xhl1kkx45zrb8nnrfw2vs"))))
7643 (build-system pyproject-build-system) 7643 (build-system pyproject-build-system)
7644 (arguments 7644 (arguments
7645 (list 7645 (list
@@ -7647,15 +7647,16 @@ underlies Mozilla Persona.")
7647 #:test-flags #~(list "--ignore=fxa/tests/test_core.py"))) 7647 #:test-flags #~(list "--ignore=fxa/tests/test_core.py")))
7648 (propagated-inputs 7648 (propagated-inputs
7649 (list python-cryptography 7649 (list python-cryptography
7650 python-pyjwt
7651 python-parameterized
7650 python-hawkauthlib 7652 python-hawkauthlib
7651 python-pybrowserid
7652 python-requests)) 7653 python-requests))
7653 (native-inputs 7654 (native-inputs
7654 (list python-grequests 7655 (list python-grequests
7656 python-hatchling
7655 python-mock 7657 python-mock
7656 python-pytest 7658 python-pytest
7657 python-responses 7659 python-responses))
7658 python-setuptools-next))
7659 (home-page "https://github.com/mozilla/PyFxA") 7660 (home-page "https://github.com/mozilla/PyFxA")
7660 (synopsis "Firefox Accounts client library for Python") 7661 (synopsis "Firefox Accounts client library for Python")
7661 (description 7662 (description