504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
28 lines
639 B
Nix
28 lines
639 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "arpeggio";
|
|
version = "2.0.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "Arpeggio";
|
|
inherit version;
|
|
hash = "sha256-x5CysG4ibS3UaOT7+1t/UGzsZkFgMf3hRBzx3ioLpwA=";
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "arpeggio" ];
|
|
|
|
meta = with lib; {
|
|
description = "Recursive descent parser with memoization based on PEG grammars (aka Packrat parser)";
|
|
homepage = "https://github.com/textX/Arpeggio";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nickcao ];
|
|
};
|
|
}
|