38 lines
1002 B
Nix
38 lines
1002 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
|
, colorama, regex
|
|
, pytestrunner, pytestCheckHook, pytest-mypy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tatsu";
|
|
version = "5.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "neogeny";
|
|
repo = "TatSu";
|
|
rev = "v${version}";
|
|
sha256 = "149ra1lwax5m1svlv4dwjfqw00lc5vwyfj6zw2v0ammmfm1b94x9";
|
|
};
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
nativeBuildInputs = [ pytestrunner ];
|
|
propagatedBuildInputs = [ colorama regex ];
|
|
checkInputs = [ pytestCheckHook pytest-mypy ];
|
|
|
|
pythonImportsCheck = [ "tatsu" ];
|
|
|
|
meta = with lib; {
|
|
description = "Generates Python parsers from grammars in a variation of EBNF";
|
|
longDescription = ''
|
|
TatSu (the successor to Grako) is a tool that takes grammars in a
|
|
variation of EBNF as input, and outputs memoizing (Packrat) PEG parsers in
|
|
Python.
|
|
'';
|
|
homepage = "https://tatsu.readthedocs.io/";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ primeos ];
|
|
};
|
|
|
|
}
|