rekado pushed a commit to branch master
in repository guix.

commit 848d9f3d07f4dc7eebb235b04650b0a7e1973e65
Author: Sergey Trofimov <[email protected]>
AuthorDate: Wed Dec 25 15:01:00 2024 +0100

    gnu: Add python-types-simplejson.
    
    * gnu/packages/python-xyz.scm (python-types-simplejson): New variable.
    
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4907d18463..a3a88d7570 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -37401,6 +37401,27 @@ Python, with static types.")
     (description "This package provides typing stubs for requests.")
     (license license:asl2.0)))
 
+(define-public python-types-simplejson
+  (package
+    (name "python-types-simplejson")
+    (version "3.19.0.20241221")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "types_simplejson" version))
+       (sha256
+        (base32 "0w7wvr84d7bj27hc2bsyh69s9d84zpkdhsibbmsibba91zdzjjhi"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:tests? #f)) ; no tests in PyPI archive, no release or tags on GitHub
+    (native-inputs
+     (list python-setuptools python-wheel))
+    (home-page "https://github.com/python/typeshed";)
+    (synopsis "Typing stubs for simplejson")
+    (description "Typing stubs for simplejson.")
+    (license license:asl2.0)))
+
 (define-public python-types-setuptools
   (package
     (name "python-types-setuptools")

Reply via email to