depot/third_party/nixpkgs/pkgs/development/python-modules/lark/default.nix
Default email 24fdeddc0a Project import generated by Copybara.
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
2024-10-23 09:41:50 +03:00

43 lines
1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
regex,
setuptools,
}:
buildPythonPackage rec {
pname = "lark";
version = "1.1.9";
format = "pyproject";
src = fetchFromGitHub {
owner = "lark-parser";
repo = "lark";
rev = "refs/tags/${version}";
hash = "sha256-pWLKjELy10VNumpBHjBYCO2TltKsZx1GhQcGMHsYJNk=";
};
nativeBuildInputs = [ setuptools ];
# Optional import, but fixes some re known bugs & allows advanced regex features
propagatedBuildInputs = [ regex ];
pythonImportsCheck = [
"lark"
"lark.parsers"
"lark.tools"
"lark.grammars"
];
# Js2py is needed for tests but it's unmaintained and insecure
doCheck = false;
meta = with lib; {
description = "Modern parsing library for Python, implementing Earley & LALR(1) and an easy interface";
homepage = "https://lark-parser.readthedocs.io/";
changelog = "https://github.com/lark-parser/lark/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
};
}