1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-02 00:04:01 +02:00

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
This commit is contained in:
Sharlatan Hellseher
2025-10-18 12:36:18 +01:00
parent 768727526d
commit 3aa4a99c55
+11 -8
View File
@@ -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