summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-03-26 23:51:19 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-24 10:14:48 +0100
commitb5c6fa111621c38197b00565f0a16200e0f196b3 (patch)
tree32b263f5788686bd11e74de2bab3e45a68cd9037 /gnu/packages/python-web.scm
parent299da13ecf10220e8cb8283fd7294aaa09c1032c (diff)
gnu: python-rapidjson: Update to 1.23.
* gnu/packages/python-web.scm (python-rapidjson): Update to 1.23. [source]: Switch to git-fetch. [native-inputs]: Remove python-wheel. Change-Id: I003839deb5e2a3ef23fae03b6a7c5ab1e51a8f8b
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm14
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index d541b42ace9..31c61bf32d7 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10683,14 +10683,16 @@ language-neutral coding interface compatible with all major web browsers.")))
10683(define-public python-rapidjson 10683(define-public python-rapidjson
10684 (package 10684 (package
10685 (name "python-rapidjson") 10685 (name "python-rapidjson")
10686 (version "1.10") 10686 (version "1.23")
10687 (source 10687 (source
10688 (origin 10688 (origin
10689 (method url-fetch) 10689 (method git-fetch)
10690 (uri (pypi-uri "python-rapidjson" version)) 10690 (uri (git-reference
10691 (url "https://github.com/python-rapidjson/python-rapidjson")
10692 (commit (string-append "v" version))))
10693 (file-name (git-file-name name version))
10691 (sha256 10694 (sha256
10692 (base32 10695 (base32 "0ajf919gg3qmi68jb0m6v80al2n65cn2ac36qz46s0h6zh92cl86"))
10693 "0h1m9m4a5rlf5hw6ak7z3qbgdhmqarzxw9d140mcf7mrxpswpzmc"))
10694 (modules '((guix build utils))) 10696 (modules '((guix build utils)))
10695 (snippet 10697 (snippet
10696 '(delete-file-recursively "rapidjson")))) 10698 '(delete-file-recursively "rapidjson"))))
@@ -10711,7 +10713,7 @@ language-neutral coding interface compatible with all major web browsers.")))
10711 "/include/rapidjson" "'")) 10713 "/include/rapidjson" "'"))
10712 (("if not os.path.isdir.*") "if False:"))))))) 10714 (("if not os.path.isdir.*") "if False:")))))))
10713 (native-inputs 10715 (native-inputs
10714 (list rapidjson python-pytest python-pytz python-setuptools python-wheel)) 10716 (list rapidjson python-pytest python-pytz python-setuptools))
10715 (home-page "https://github.com/python-rapidjson/python-rapidjson") 10717 (home-page "https://github.com/python-rapidjson/python-rapidjson")
10716 (synopsis "Python wrapper around rapidjson") 10718 (synopsis "Python wrapper around rapidjson")
10717 (description "This package provides a python wrapper around rapidjson.") 10719 (description "This package provides a python wrapper around rapidjson.")