1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 13:10:33 +02:00

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
This commit is contained in:
Sharlatan Hellseher
2026-03-26 23:51:19 +00:00
parent 8855c9a252
commit 72a4bb6de4

View File

@@ -10497,14 +10497,16 @@ language-neutral coding interface compatible with all major web browsers.")))
(define-public python-rapidjson
(package
(name "python-rapidjson")
(version "1.10")
(version "1.23")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-rapidjson" version))
(method git-fetch)
(uri (git-reference
(url "https://github.com/python-rapidjson/python-rapidjson")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0h1m9m4a5rlf5hw6ak7z3qbgdhmqarzxw9d140mcf7mrxpswpzmc"))
(base32 "0ajf919gg3qmi68jb0m6v80al2n65cn2ac36qz46s0h6zh92cl86"))
(modules '((guix build utils)))
(snippet
'(delete-file-recursively "rapidjson"))))
@@ -10525,7 +10527,7 @@ language-neutral coding interface compatible with all major web browsers.")))
"/include/rapidjson" "'"))
(("if not os.path.isdir.*") "if False:")))))))
(native-inputs
(list rapidjson python-pytest python-pytz python-setuptools python-wheel))
(list rapidjson python-pytest python-pytz python-setuptools))
(home-page "https://github.com/python-rapidjson/python-rapidjson")
(synopsis "Python wrapper around rapidjson")
(description "This package provides a python wrapper around rapidjson.")