~ruther/guix-local

20529b72e207ea0c184fbfad14c982f057d92bda — Nicolas Graves 7 months ago 7199763
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>
1 files changed, 8 insertions(+), 7 deletions(-)

M gnu/packages/python-web.scm
M gnu/packages/python-web.scm => gnu/packages/python-web.scm +8 -7
@@ 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