diff options
author | Tanguy Le Carrour <tanguy@bioneland.org> | 2020-07-27 10:00:47 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-07-30 00:57:27 +0200 |
commit | 882979023e1a4f83ee7df8b576c39ea50e5d8c00 (patch) | |
tree | 43975c35a1a69e6eff07ec956693836d0eace0bc /gnu/packages | |
parent | 2f60db668a8e22b7c535b67e3f6f06c270cd2a69 (diff) | |
download | guix-882979023e1a4f83ee7df8b576c39ea50e5d8c00.tar.gz |
gnu: Add python-lark-parser.
* gnu/packages/python-xyz.scm (python-lark-parser): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 5429982c8c..b54b6538dc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12341,6 +12341,26 @@ in Python. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you.") (license license:expat))) +(define-public python-lark-parser + (package + (name "python-lark-parser") + (version "0.9.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "lark-parser" version)) + (sha256 + (base32 + "1kd61asrb3h9spgsj4bslfbgp8q4271sw3hblk6f2vbbblv8jxcy")))) + (build-system python-build-system) + (home-page "https://github.com/lark-parser/lark") + (synopsis "Multi-language parser for Python") + (description + "Lark is a parser built with a focus on ergonomics, performance and +resilience. Lark can parse all context-free languages. That means it is +capable of parsing almost any programming language out there, and to +some degree most natural languages too.") + (license license:expat))) + (define-public python-libcst (package (name "python-libcst") |