guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 3aa4a99c55b521d96857c4d7711b48ec2d8fac8a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Oct 18 12:36:18 2025 +0100

    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
---
 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 102c0385ec..cce261f9be 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

Reply via email to