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