From 3aa4a99c55b521d96857c4d7711b48ec2d8fac8a Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 18 Oct 2025 12:36:18 +0100 Subject: [PATCH] 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] : Fix archive name as seen in PyPI. [build-system]: Switch to pypproejct-build-system. [arguments] : No tests. [native-inputs]: Add python-setuptools. Change-Id: I99e8519483f668c38937c172be83e13947ffe17f --- gnu/packages/python-xyz.scm | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 102c0385ec3bba1c880b851f0dcfb840dc607f3e..cce261f9be9da8f4504893223cc7d098a7082338 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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