python3Packages.lsp-tree-sitter: 0.0.17 -> 0.0.18, unbreak (#435923)

This commit is contained in:
Kira Bruneau
2025-08-27 17:24:39 -04:00
committed by GitHub
@@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "lsp-tree-sitter";
version = "0.0.17";
version = "0.0.18";
pyproject = true;
src = fetchFromGitHub {
owner = "neomutt";
repo = "lsp-tree-sitter";
tag = version;
hash = "sha256-4DQzHdii2YS/Xg6AdT/kXC/8B88ZQaLgUf2oWoOthV8=";
hash = "sha256-Hjl3EASaOWmLZpBxmyelSUTy7jJEIEo77IIQh5DHIbg=";
};
build-system = [
@@ -40,12 +40,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "lsp_tree_sitter" ];
meta = with lib; {
meta = {
description = "Library to create language servers";
homepage = "https://github.com/neomutt/lsp-tree-sitter";
license = licenses.gpl3Only;
maintainers = with maintainers; [ doronbehar ];
# https://github.com/neomutt/lsp-tree-sitter/issues/4
broken = true;
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ doronbehar ];
};
}