python3Packages.tree-sitter-markdown: 0.5.0 -> 0.3.2 (#424541)

authored by Gaétan Lepage and committed by GitHub 659bedef a421ac65

+7 -9
-6
pkgs/development/python-modules/textual/default.nix
··· 77 77 disabledTests = [ 78 78 # Assertion issues 79 79 "test_textual_env_var" 80 - 81 - # Fail since tree-sitter-markdown was updated to 0.5.0 82 - # ValueError: Incompatible Language version 15. Must be between 13 and 14 83 - # https://github.com/Textualize/textual/issues/5868 84 - "test_setting_builtin_language_via_attribute" 85 - "test_setting_builtin_language_via_constructor" 86 80 ]; 87 81 88 82 pytestFlags = [
+7 -3
pkgs/development/python-modules/tree-sitter-markdown/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "tree-sitter-markdown"; 12 - version = "0.5.0"; 12 + # only update to the latest version on PyPI 13 + version = "0.3.2"; 13 14 pyproject = true; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "tree-sitter-grammars"; 17 18 repo = "tree-sitter-markdown"; 18 19 tag = "v${version}"; 19 - hash = "sha256-I9KDE1yZce8KIGPLG5tmv5r/NCWwN95R6fIyvGdx+So="; 20 + hash = "sha256-OlVuHz9/5lxsGVT+1WhKx+7XtQiezMW1odiHGinzro8="; 20 21 }; 21 22 22 23 build-system = [ ··· 41 42 homepage = "https://github.com/tree-sitter-grammars/tree-sitter-markdown"; 42 43 changelog = "https://github.com/tree-sitter-grammars/tree-sitter-markdown/releases/tag/${src.tag}"; 43 44 license = lib.licenses.mit; 44 - maintainers = with lib.maintainers; [ GaetanLepage ]; 45 + maintainers = with lib.maintainers; [ 46 + GaetanLepage 47 + gepbird 48 + ]; 45 49 }; 46 50 }