guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add python-ujson.


From: guix-commits
Subject: 01/03: gnu: Add python-ujson.
Date: Mon, 9 Dec 2019 16:34:53 -0500 (EST)

brettgilio pushed a commit to branch master
in repository guix.

commit b657b23ffb05a8eb22f91fe05bdfcd140081d93a
Author: Brett Gilio <address@hidden>
Date:   Mon Dec 9 15:34:01 2019 -0600

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e002b97..244eb18 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -16749,3 +16749,26 @@ services such as upower, systemd, logind, 
gnome-session or others, and it is
 hard (or impossible without root privileges) to set the state of the real
 services to what you expect in your tests.")
   (license license:lgpl3+)))
+
+(define-public python-ujson
+  (package
+    (name "python-ujson")
+    (version "1.35")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "ujson" version))
+       (sha256
+        (base32
+         "11jz5wi7mbgqcsz52iqhpyykiaasila4lq8cmc2d54bfa3jp6q7n"))))
+    (build-system python-build-system)
+    (home-page "http://www.esn.me";)
+    (synopsis
+     "Ultra fast JSON encoder and decoder for Python")
+    (description
+     "UltraJSON is an ultra fast JSON encoder and decoder written in pure C 
with
+ bindings for Python 2.5+ and 3.")
+    (license license:bsd-3)))
+
+(define-public python2-ujson
+  (package-with-python2 python-ujson))



reply via email to

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