forked from mirrors/nixpkgs
lark-parser: 2017-12-18 -> 0.6.5
This bumps lark-parser to a released version that doesn't loop forever
and consumes all memory on certain grammars.
erezsh/lark redirects now to lark-parser/lark, so also update homepage.
(cherry picked from commit becf8879f4
)
This commit is contained in:
parent
cf597f0926
commit
1349894743
|
@ -5,14 +5,14 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "lark-parser"; # PyPI name
|
pname = "lark-parser";
|
||||||
version = "2017-12-18";
|
version = "0.6.5";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "erezsh";
|
owner = "lark-parser";
|
||||||
repo = "lark";
|
repo = "lark";
|
||||||
rev = "9d6cde9b1ba971f02ea8106fa3b71a934e83d6fa";
|
rev = version;
|
||||||
sha256 = "0nv6nxd8wx9dwhn37m94fkc10gknckrjs1hzajxygla3dpql455j";
|
sha256 = "0mf10xm9blqik8mwrpw0r07vqlk2y4r98yqvk1sq849zqlxmqpsr";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
@ -23,7 +23,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/erezsh/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 ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue