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