Merge pull request #82134 from r-ryantm/auto-update/python2.7-lark-parser

python27Packages.lark-parser: 0.8.1 -> 0.8.2
This commit is contained in:
Mario Rodas 2020-03-09 06:07:07 -05:00 committed by GitHub
commit dcc72de706
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,13 +5,13 @@
buildPythonPackage rec {
pname = "lark-parser";
version = "0.8.1";
version = "0.8.2";
src = fetchFromGitHub {
owner = "lark-parser";
repo = "lark";
rev = version;
sha256 = "1mjicdvrzh9r9q3xrjrzaiaxk04r60a3l6l0vnp1hq3xfc9ccqc8";
sha256 = "1i585q27qlwk4rpgsh621s60im1j9ynwyz5pcc8s3ffmjam28vss";
};
# tests of Nearley support require js2py
@ -21,7 +21,7 @@ buildPythonPackage rec {
meta = {
description = "A modern parsing library for Python, implementing Earley & LALR(1) and an easy interface";
homepage = https://github.com/lark-parser/lark;
homepage = "https://github.com/lark-parser/lark";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fridh ];
};