67 lines
1.5 KiB
Nix
67 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
tree-sitter-python,
|
|
tree-sitter-rust,
|
|
tree-sitter-html,
|
|
tree-sitter-javascript,
|
|
tree-sitter-json,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tree-sitter";
|
|
version = "0.24.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tree-sitter";
|
|
repo = "py-tree-sitter";
|
|
tag = "v${version}";
|
|
hash = "sha256-ZDt/8suteaAjGdk71l8eej7jDkkVpVDBIZS63SA8tsU=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
# see https://github.com/tree-sitter/py-tree-sitter/issues/330#issuecomment-2629403946
|
|
patches = lib.optionals (stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux) [
|
|
./segfault-patch.diff
|
|
];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
tree-sitter-python
|
|
tree-sitter-rust
|
|
tree-sitter-html
|
|
tree-sitter-javascript
|
|
tree-sitter-json
|
|
];
|
|
|
|
pythonImportsCheck = [ "tree_sitter" ];
|
|
|
|
preCheck = ''
|
|
# https://github.com/NixOS/nixpkgs/issues/255262#issuecomment-1721265871
|
|
rm -r tree_sitter
|
|
'';
|
|
|
|
disabledTests = [
|
|
# test fails in nix sandbox
|
|
"test_dot_graphs"
|
|
];
|
|
|
|
meta = {
|
|
description = "Python bindings to the Tree-sitter parsing library";
|
|
homepage = "https://github.com/tree-sitter/py-tree-sitter";
|
|
changelog = "https://github.com/tree-sitter/py-tree-sitter/releases/tag/${src.tag}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|