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

gnu: Add python-mujson.

* gnu/packages/python-xyz.scm (python-mujson): New variable.
This commit is contained in:
Efraim Flashner
2020-05-19 13:50:04 +03:00
parent 75ac5c5281
commit 64d1d2b271

View File

@@ -19895,3 +19895,21 @@ allows you, from Python code, to “fix” invalid (X)HTML markup.")
(define-public python2-pytidylib
(package-with-python2 python-pytidylib))
(define-public python-mujson
(package
(name "python-mujson")
(version "1.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "mujson" version))
(sha256
(base32
"0wbj6r8yzsdx2b0kbldlkznr1a9nn33za2q9x3g0hbg420dwzn97"))))
(build-system python-build-system)
(home-page "https://github.com/mattgiles/mujson")
(synopsis "Use the fastest JSON functions available at import time")
(description "This packages selects the fastest JSON functions available
at import time.")
(license license:expat)))