guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: gnu: Add python-mujson.


From: guix-commits
Subject: 01/05: gnu: Add python-mujson.
Date: Tue, 19 May 2020 13:12:56 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 64d1d2b271babed83afaabf034dac67bbae3a364
Author: Efraim Flashner <address@hidden>
AuthorDate: Tue May 19 13:50:04 2020 +0300

    gnu: Add python-mujson.
    
    * gnu/packages/python-xyz.scm (python-mujson): New variable.
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c26a766..8532de9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]