mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 19:35:25 -05:00
gnu: Add python-cson.
* gnu/packages/python-xyz.scm (python-cson): New variable.
This commit is contained in:
parent
602f3b6793
commit
07c8177b88
1 changed files with 19 additions and 0 deletions
|
@ -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)))
|
||||
|
|
Loading…
Reference in a new issue