guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: Add python-cson.


From: guix-commits
Subject: 02/03: gnu: Add python-cson.
Date: Thu, 16 Jan 2020 11:10:06 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 07c8177b885f1fca367b9cf8befc3328392d79c2
Author: Nicolas Goaziou <address@hidden>
AuthorDate: Thu Jan 16 16:49:43 2020 +0100

    gnu: Add python-cson.
    
    * gnu/packages/python-xyz.scm (python-cson): New variable.
---
 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 97da097..41a2df0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17094,3 +17094,22 @@ that take parsers as their arguments and return them 
as result values.")
     (description "This package is a PEG-based parser and interpreter with
 memoization.")
     (license license:expat)))
+
+(define-public python-cson
+  (package
+    (name "python-cson")
+    (version "0.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "cson" version))
+       (sha256
+        (base32 "00cyvigg4npbph39ghkg77xbxisa6plf75vii24igxfizik0337f"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-speg" ,python-speg)))
+    (home-page "https://github.com/avakar/pycson";)
+    (synopsis "Parser for Coffeescript Object Notation (CSON)")
+    (description "This package is a parser for Coffeescript Object
+Notation (CSON).")
+    (license license:expat)))



reply via email to

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