mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
gnu: Add python-speg.
* gnu/packages/python-xyz.scm (python-speg): New variable.
This commit is contained in:
parent
d14e4745b3
commit
602f3b6793
1 changed files with 21 additions and 0 deletions
|
@ -17073,3 +17073,24 @@ (define-public python-funcparserlib
|
|||
functional combinators. Parser combinators are just higher-order functions
|
||||
that take parsers as their arguments and return them as result values.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-speg
|
||||
(package
|
||||
(name "python-speg")
|
||||
(version "0.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "speg" version ".zip"))
|
||||
(sha256
|
||||
(base32 "0w9y4jf4787dzhy6rvhwi0mpl0r8qkqmqmyv2hpwdpv8w53yzjqh"))))
|
||||
(arguments
|
||||
`(#:tests? #f)) ;FIXME: tests fail, not sure why
|
||||
(native-inputs
|
||||
`(("unzip" ,unzip)))
|
||||
(build-system python-build-system)
|
||||
(home-page "https://github.com/avakar/speg")
|
||||
(synopsis "PEG-based parser interpreter with memoization")
|
||||
(description "This package is a PEG-based parser and interpreter with
|
||||
memoization.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue