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

authored by Kira Bruneau and committed by GitHub 4b8dab72 220af620

+5 -7
+5 -7
pkgs/development/python-modules/lsp-tree-sitter/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "lsp-tree-sitter"; 17 - version = "0.0.17"; 17 + version = "0.0.18"; 18 18 pyproject = true; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "neomutt"; 22 22 repo = "lsp-tree-sitter"; 23 23 tag = version; 24 - hash = "sha256-4DQzHdii2YS/Xg6AdT/kXC/8B88ZQaLgUf2oWoOthV8="; 24 + hash = "sha256-Hjl3EASaOWmLZpBxmyelSUTy7jJEIEo77IIQh5DHIbg="; 25 25 }; 26 26 27 27 build-system = [ ··· 40 40 41 41 pythonImportsCheck = [ "lsp_tree_sitter" ]; 42 42 43 - meta = with lib; { 43 + meta = { 44 44 description = "Library to create language servers"; 45 45 homepage = "https://github.com/neomutt/lsp-tree-sitter"; 46 - license = licenses.gpl3Only; 47 - maintainers = with maintainers; [ doronbehar ]; 48 - # https://github.com/neomutt/lsp-tree-sitter/issues/4 49 - broken = true; 46 + license = lib.licenses.gpl3Only; 47 + maintainers = with lib.maintainers; [ doronbehar ]; 50 48 }; 51 49 }