lol

python313Packages.myst-parser: 4.0.0 -> 4.0.1

https://raw.githubusercontent.com/executablebooks/MyST-Parser/v4.0.1/CHANGELOG.md

+9 -15
+9 -15
pkgs/development/python-modules/myst-parser/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - fetchpatch2, 6 5 flit-core, 7 6 pythonOlder, 8 7 defusedxml, ··· 21 20 }: 22 21 buildPythonPackage rec { 23 22 pname = "myst-parser"; 24 - version = "4.0.0"; 25 - format = "pyproject"; 23 + version = "4.0.1"; 24 + pyproject = true; 26 25 27 26 disabled = pythonOlder "3.10"; 28 27 ··· 30 29 owner = "executablebooks"; 31 30 repo = pname; 32 31 tag = "v${version}"; 33 - hash = "sha256-QbFENC/Msc4pkEOPdDztjyl+2TXtAbMTHPJNAsUB978="; 32 + hash = "sha256-/Prauz4zuJY39EK2BmgBbH1uwjF4K38e5X5hPYwRBl0="; 34 33 }; 35 34 36 - patches = [ 37 - (fetchpatch2 { 38 - # Sphinx 8.1 compat 39 - url = "https://github.com/executablebooks/MyST-Parser/commit/9fe724ebf1d02fd979632d82387f802c91e0d6f6.patch"; 40 - hash = "sha256-KkAV9tP+dFax9KuxqkhqNlGWx6wSO6M2dWpah+GYG0E="; 41 - }) 42 - ]; 43 - 44 35 build-system = [ flit-core ]; 45 36 46 37 dependencies = [ ··· 63 54 ] ++ markdown-it-py.optional-dependencies.linkify; 64 55 65 56 disabledTests = [ 66 - # sphinx 7.4 compat 67 - "test_amsmath" 68 - # pygments 2.19 compat 57 + # sphinx 8.2 compat 58 + # https://github.com/executablebooks/MyST-Parser/issues/1030 59 + "test_sphinx_directives" 60 + "test_references_singlehtml" 61 + "test_extended_syntaxes" 62 + "test_fieldlist_extension" 69 63 "test_includes" 70 64 ]; 71 65