[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#42465] [PATCH v2 06/10] gnu: Add python-lark-parser.
From: |
Tanguy Le Carrour |
Subject: |
[bug#42465] [PATCH v2 06/10] gnu: Add python-lark-parser. |
Date: |
Wed, 22 Jul 2020 14:09:35 +0200 |
* gnu/packages/python-xyz.scm (python-lark-parser): New variable.
---
gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4f959b886c..26673c20c0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12297,6 +12297,25 @@ 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 "A modern parsing library 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")
--
2.27.0
- [bug#42465] [PATCH 08/10] gnu: Add python-flake8-bugbear., (continued)
- [bug#42465] [PATCH v2 01/10] gnu: python-typing-extension: Update to 3.7.4.2., Tanguy Le Carrour, 2020/07/22
- [bug#42465] [PATCH v2 04/10] gnu: Add python-typing-inspect., Tanguy Le Carrour, 2020/07/22
- [bug#42465] [PATCH v2 08/10] gnu: Add python-flake8-bugbear., Tanguy Le Carrour, 2020/07/22
- [bug#42465] [PATCH v2 02/10] gnu: python-hypothesis: Update to 5.20.0., Tanguy Le Carrour, 2020/07/22
- [bug#42465] [PATCH v2 03/10] gnu: Add python-mypy-extensions., Tanguy Le Carrour, 2020/07/22
- [bug#42465] [PATCH v2 05/10] gnu: Add python-libcst., Tanguy Le Carrour, 2020/07/22
- [bug#42465] [PATCH v2 09/10] gnu: Add python-flake8-pyi., Tanguy Le Carrour, 2020/07/22
- [bug#42465] [PATCH v2 06/10] gnu: Add python-lark-parser.,
Tanguy Le Carrour <=
- [bug#42465] [PATCH v2 10/10] gnu: Add python-mypy., Tanguy Le Carrour, 2020/07/22
- [bug#42465] [PATCH v2 07/10] gnu: Add python-hypothesmith., Tanguy Le Carrour, 2020/07/22
- [bug#42465] [PATCH v3 1/9] gnu: Add python-mypy-extensions., Tanguy Le Carrour, 2020/07/27
- [bug#42465] [PATCH v3 2/9] gnu: Add python-typing-inspect., Tanguy Le Carrour, 2020/07/27
- [bug#42465] [PATCH v3 3/9] gnu: Add python-hypothesis-5.23., Tanguy Le Carrour, 2020/07/27
- [bug#42465] [PATCH v3 4/9] gnu: Add python-libcst., Tanguy Le Carrour, 2020/07/27
- [bug#42465] [PATCH v3 8/9] gnu: Add python-flake8-pyi., Tanguy Le Carrour, 2020/07/27
- [bug#42465] [PATCH v3 9/9] gnu: Add python-mypy., Tanguy Le Carrour, 2020/07/27
- [bug#42465] [PATCH v3 6/9] gnu: Add python-hypothesmith., Tanguy Le Carrour, 2020/07/27
- [bug#42465] [PATCH v3 5/9] gnu: Add python-lark-parser., Tanguy Le Carrour, 2020/07/27