From 72a4bb6de4eb8feeb2420f5822424388e4a52ba0 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 26 Mar 2026 23:51:19 +0000 Subject: [PATCH] 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 --- gnu/packages/python-web.scm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index eb7aa2e6b2..2dd9295e03 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -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.")