guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: Add python-sexpdata.


From: guix-commits
Subject: 03/05: gnu: Add python-sexpdata.
Date: Sat, 23 May 2020 15:19:44 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 1348e512375503e254f8d1f0c79a99754a94f0e8
Author: Ryan Prior via Guix-patches via <address@hidden>
AuthorDate: Sun May 17 18:41:54 2020 +0000

    gnu: Add python-sexpdata.
    
    * gnu/packages/python-xyz.scm (python-sexpdata): New variable.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7d8003a..fb19523 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5768,6 +5768,25 @@ them as the version argument or in a SCM managed file.")
 (define-public python2-setuptools-scm
   (package-with-python2 python-setuptools-scm))
 
+(define-public python-sexpdata
+  (package
+    (name "python-sexpdata")
+    (version "0.0.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "sexpdata" version))
+       (sha256
+        (base32
+         "1q4lsjyzzqrdv64l0pv4ij9nd8gqhvxqcrpxc2xpxs652sk2gj0s"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/jd-boyd/sexpdata";)
+    (synopsis "S-expression parser for Python")
+    (description
+     "Sexpdata is an S-expression parser/serializer.  It has load and dump
+functions like pickle, json or PyYAML module.")
+    (license license:bsd-3)))
+
 (define-public python-pathlib2
   (package
     (name "python-pathlib2")



reply via email to

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