diff options
author | Vincent Prat <vprat@deeplinks.com> | 2022-04-29 09:43:35 +0200 |
---|---|---|
committer | Guix Patches Tester <> | 2022-04-29 08:52:22 +0100 |
commit | 1743b8670d3cabff1caafe88201861027c54551a (patch) | |
tree | f59ac18a38c1060f2ad2e9c56f3db6aa1b44c1e2 | |
parent | 919a7412d3a18d94a39379376c702cd73b83dadd (diff) | |
download | guix-patches-1743b8670d3cabff1caafe88201861027c54551a.tar guix-patches-1743b8670d3cabff1caafe88201861027c54551a.tar.gz |
gnu: Add python-arpeggio.
* gnu/packages/python-xyz.scm (python-arpeggio): New variable.
-rw-r--r-- | gnu/packages/python-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f8e599a453..af9244c3ea 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29587,3 +29587,32 @@ and setting the color of terminal output, via HyDEV.") versions of MkDocs-powered docs to a Git branch. It is suitable for deploying to Github via gh-pages.") (license license:bsd-3))) + +(define-public python-arpeggio + (package + (name "python-arpeggio") + (version "2.0.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "Arpeggio" version)) + (sha256 + (base32 + "0ggdsck1wpladd5bh9drhkmm86bblgk2wagrhn3sdf4v04wkic6n")))) + (build-system python-build-system) + (native-inputs (list python-coverage + python-coveralls + python-flake8 + python-mike + python-mkdocs + python-pytest + python-pytest-runner + python-twine + python-wheel)) + (home-page "https://github.com/textX/Arpeggio") + (synopsis "Packrat parser interpreter for Python") + (description + "This Python library provides a recursive descent parser with backtracking +and memoization (a.k.a. pacrat parser). Arpeggio grammars are based on PEG +formalism. Arpeggio's main use is a foundation for a tool-chain for DSL +development but it can be used for all sort of general purpose parsing.") + (license license:expat))) |