
This allows it to be updated according to the release cadence of the entire ecosystem, not as github tags are pushed. See: https://github.com/NixOS/nixpkgs/pull/425177
62 lines
1.4 KiB
Nix
62 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
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 = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-q9la9lyi9Pfso1Y0M5HtZp52Tzd0i1NSlG8A9/x45zQ=";
|
|
};
|
|
|
|
# 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 = [
|
|
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/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|