summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSergey Trofimov <[email protected]>2024-12-25 15:01:00 +0100
committerRicardo Wurmus <[email protected]>2025-01-20 21:37:26 +0100
commit848d9f3d07f4dc7eebb235b04650b0a7e1973e65 (patch)
tree089cabf555391ca431fe737a50ed85adbe111c6a /gnu/packages/python-xyz.scm
parentece7f83d4e5e6fe7639be676c085c1e401187a5a (diff)
gnu: Add python-types-simplejson.
* gnu/packages/python-xyz.scm (python-types-simplejson): New variable. Signed-off-by: Sharlatan Hellseher <[email protected]>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm21
1 files changed, 21 insertions, 0 deletions
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")