guix-commits
[Top][All Lists]
Advanced

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

47/57: gnu: Add python-jsonplus.


From: guix-commits
Subject: 47/57: gnu: Add python-jsonplus.
Date: Tue, 22 Sep 2020 12:43:42 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 28e997e88b692fde9ba5c61213b26962cb473c95
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Tue Sep 1 17:34:32 2020 +0200

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

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 3094b07..0e9809e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19876,6 +19876,31 @@ 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-jsonplus
+  (package
+    (name "python-jsonplus")
+    (version "0.8.0")
+    (home-page "https://github.com/randomir/jsonplus";)
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "jsonplus" version))
+              (sha256
+               (base32
+                "05yv3dw813zwas9snz124k2hki49y268b3mx0gj9w7v1nrjmglq1"))))
+    (build-system python-build-system)
+    ;; XXX: No tests on PyPI, and the repository has no tags.
+    (arguments '(#:tests? #f))
+    (propagated-inputs
+     `(("python-dateutil" ,python-dateutil)
+       ("python-simplejson" ,python-simplejson)
+       ("python-sortedcontainers" ,python-sortedcontainers)))
+    (synopsis "Serialize Python types to/from JSON")
+    (description
+     "This package provides functionality to serialize arbitrary data types
+to and from JSON.  Common data types are implemented and it is easy to
+register custom encoders and decoders.")
+    (license license:expat)))
+
 (define-public python-ujson
   (package
     (name "python-ujson")



reply via email to

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