python312Packages.pymdown-extensions: 10.8.1 -> 10.11.2

Diff: facelessuser/pymdown-extensions@refs/tags/10.8.1...10.11.2
This commit is contained in:
Fabian Affolter
2024-10-13 16:57:37 +02:00
parent c0ca072b4d
commit 65806d881a
@@ -2,7 +2,6 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
hatchling,
pytestCheckHook,
markdown,
@@ -46,24 +45,16 @@ let
in
buildPythonPackage rec {
pname = "pymdown-extensions";
version = "10.8.1";
version = "10.11.2";
pyproject = true;
src = fetchFromGitHub {
owner = "facelessuser";
repo = "pymdown-extensions";
rev = "refs/tags/${version}";
hash = "sha256-No0RDBgr40xSOiKXQRLRZnMdV+5i4eM8Jwp7c2Jw/ZY=";
hash = "sha256-1AuN2kp7L6w8RvKky3IoX4ht9uQL6o2nm6dTDo/INC0=";
};
patches = [
(fetchpatch2 {
name = "pymdown-extensions-pygments-compat.patch";
url = "https://github.com/facelessuser/pymdown-extensions/commit/f1e2fad862c9738e420b8451dfdfbd9e90e849fc.patch";
hash = "sha256-ENYTRXBJ76VPhhab8MdOh+bkcQNRklXT3thvPi+gHIY=";
})
];
build-system = [ hatchling ];
dependencies = [
@@ -79,6 +70,8 @@ buildPythonPackage rec {
disabledTests = [
# test artifact mismatch
"test_toc_tokens"
# Tests fails with AssertionError
"test_windows_root_conversion"
];
pythonImportsCheck = map (ext: "pymdownx.${ext}") extensions;