~ruther/guix-local

3aa4a99c55b521d96857c4d7711b48ec2d8fac8a — Sharlatan Hellseher 5 months ago 7687275
gnu: python-types-ujson: Update to 5.10.0.20250822.

* gnu/packages/python-xyz.scm (python-types-ujson): Update to 5.10.0.20250822.
[source] <pypi-uri>: Fix archive name as seen in PyPI.
[build-system]: Switch to pypproejct-build-system.
[arguments] <tests?>: No tests.
[native-inputs]: Add python-setuptools.

Change-Id: I99e8519483f668c38937c172be83e13947ffe17f
1 files changed, 11 insertions(+), 8 deletions(-)

M gnu/packages/python-xyz.scm
M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +11 -8
@@ 36553,14 36553,17 @@ Python stubs contained in the complete @code{typeshed} collection.")
(define-public python-types-ujson
  (package
    (name "python-types-ujson")
    (version "4.2.1")
    (source (origin
              (method url-fetch)
              (uri (pypi-uri "types-ujson" version))
              (sha256
               (base32
                "0k9n9hsq4k2zaakdwbkcsvi7m8d3mv2y9yl6f171y58ld4qpcxcy"))))
    (build-system python-build-system)
    (version "5.10.0.20250822")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "types_ujson" version))
       (sha256
        (base32 "01m0gdcy6plrjxxih96ra86wd2zhn4skzw7k7hvk51gpw5c5ay8a"))))
    (build-system pyproject-build-system)
    (arguments
     (list #:tests? #f))        ;no tests provided
    (native-inputs (list python-setuptools))
    (home-page "https://github.com/python/typeshed")
    (synopsis "Typing stubs for ujson")
    (description