gnu: Add python-cson.

* gnu/packages/python-xyz.scm (python-cson): New variable.
This commit is contained in:
Nicolas Goaziou 2020-01-16 16:49:43 +01:00
parent 602f3b6793
commit 07c8177b88
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -17094,3 +17094,22 @@ (define-public python-speg
(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)))