From ca8b6a11817b9ef8b791f9cace0ba93123ca9ed1 Mon Sep 17 00:00:00 2001 From: Grimmauld Date: Fri, 22 Aug 2025 18:33:59 +0200 Subject: [PATCH] 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 --- .../python-modules/lsp-tree-sitter/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) 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 ]; }; }