nixpkgs/pkgs/development/python-modules/tatsu/default.nix

38 lines
1,002 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
2021-03-22 12:51:56 +00:00
, colorama, regex
, pytestrunner, pytestCheckHook, pytest-mypy
}:
buildPythonPackage rec {
2021-03-22 12:51:56 +00:00
pname = "tatsu";
2021-03-23 12:18:23 +00:00
version = "5.6.1";
src = fetchFromGitHub {
owner = "neogeny";
2021-03-22 12:51:56 +00:00
repo = "TatSu";
rev = "v${version}";
2021-03-23 12:18:23 +00:00
sha256 = "149ra1lwax5m1svlv4dwjfqw00lc5vwyfj6zw2v0ammmfm1b94x9";
};
2021-03-18 12:44:55 +00:00
disabled = pythonOlder "3.8";
nativeBuildInputs = [ pytestrunner ];
2021-03-22 12:51:56 +00:00
propagatedBuildInputs = [ colorama regex ];
checkInputs = [ pytestCheckHook pytest-mypy ];
2021-03-22 12:51:56 +00:00
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 ];
};
}