diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-26 23:51:19 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-18 14:36:32 +0100 |
| commit | 9d8d655e297cba77e06eaed97635bb80627d2df5 (patch) | |
| tree | 6cf8f0538b638e00f611a3ab3d4e737d8d8da19a /gnu/packages/python-web.scm | |
| parent | 1ced881d894ff18d3dc44b09b61625a475ea8432 (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.scm | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index d541b42ace..31c61bf32d 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."))) (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")))) @@ -10711,7 +10713,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.") |
