diff --git a/pkgs/development/python-modules/lsp-tree-sitter/default.nix b/pkgs/development/python-modules/lsp-tree-sitter/default.nix index 492695614615..37395c94091e 100644 --- a/pkgs/development/python-modules/lsp-tree-sitter/default.nix +++ b/pkgs/development/python-modules/lsp-tree-sitter/default.nix @@ -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 ]; }; }