python3Packages.lsp-tree-sitter: 0.0.17 -> 0.0.18, unbreak

Release notes: https://github.com/neomutt/lsp-tree-sitter/releases/tag/0.0.18

Closes https://github.com/NixOS/nixpkgs/issues/425798
Depends on https://github.com/NixOS/nixpkgs/pull/431280

Grimmauld ca8b6a11 6401d553

Changed files
+5 -7
pkgs
development
python-modules
lsp-tree-sitter
+5 -7
pkgs/development/python-modules/lsp-tree-sitter/default.nix
···
buildPythonPackage rec {
pname = "lsp-tree-sitter";
-
version = "0.0.17";
pyproject = true;
src = fetchFromGitHub {
owner = "neomutt";
repo = "lsp-tree-sitter";
tag = version;
-
hash = "sha256-4DQzHdii2YS/Xg6AdT/kXC/8B88ZQaLgUf2oWoOthV8=";
};
build-system = [
···
pythonImportsCheck = [ "lsp_tree_sitter" ];
-
meta = with lib; {
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;
};
}
···
buildPythonPackage rec {
pname = "lsp-tree-sitter";
+
version = "0.0.18";
pyproject = true;
src = fetchFromGitHub {
owner = "neomutt";
repo = "lsp-tree-sitter";
tag = version;
+
hash = "sha256-Hjl3EASaOWmLZpBxmyelSUTy7jJEIEo77IIQh5DHIbg=";
};
build-system = [
···
pythonImportsCheck = [ "lsp_tree_sitter" ];
+
meta = {
description = "Library to create language servers";
homepage = "https://github.com/neomutt/lsp-tree-sitter";
+
license = lib.licenses.gpl3Only;
+
maintainers = with lib.maintainers; [ doronbehar ];
};
}