python312Packages.pymdown-extensions: 10.8.1 -> 10.11.2, python312Packages.mkdocstrings-python: 1.11.1 -> 1.12.0 (#348269)

This commit is contained in:
Fabian Affolter 2024-10-15 10:59:13 +02:00 committed by GitHub
commit abe5718dfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 15 additions and 17 deletions

View File

@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "aggdraw";
version = "1.3.18";
version = "1.3.19";
format = "pyproject";
src = fetchFromGitHub {
owner = "pytroll";
repo = pname;
rev = "v${version}";
hash = "sha256-dM6yLR6xsZerpqY+BMxIjrJ3fQty9CFUWhxl2zkTgRA=";
hash = "sha256-J9+mxlUxOoRBFdz+p8me2T93jaov5rNvKbAZ2YX/VhA=";
};
nativeBuildInputs = [

View File

@ -14,7 +14,7 @@
buildPythonPackage rec {
pname = "griffe";
version = "1.3.2";
version = "1.4.1";
pyproject = true;
disabled = pythonOlder "3.8";
@ -23,7 +23,7 @@ buildPythonPackage rec {
owner = "mkdocstrings";
repo = "griffe";
rev = "refs/tags/${version}";
hash = "sha256-IDIacG1FM/JidHV76PGTaPnkIfulAli8+YLuiuPHdZ8=";
hash = "sha256-DgfoaRvgU4WWbCirbLld8f/C2bPrW576aX0HglaRjEU=";
};
build-system = [ pdm-backend ];

View File

@ -12,7 +12,7 @@
buildPythonPackage rec {
pname = "mkdocstrings-python";
version = "1.11.1";
version = "1.12.0";
pyproject = true;
disabled = pythonOlder "3.8";
@ -21,7 +21,7 @@ buildPythonPackage rec {
owner = "mkdocstrings";
repo = "python";
rev = "refs/tags/${version}";
hash = "sha256-g6F6xIFKLzNqgbWGZXdJeoqQz/GIlC3XmrG9Kjkr1rU=";
hash = "sha256-Dwh1MQuOjN/quxKlOMIadZ5MR8BrS/s6l4mwSBTfXQE=";
};
build-system = [ pdm-backend ];
@ -38,6 +38,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "mkdocstrings_handlers" ];
disabledTests = [
# Tests fails with AssertionError
"test_windows_root_conversion"
];
meta = with lib; {
description = "Python handler for mkdocstrings";
homepage = "https://github.com/mkdocstrings/python";

View File

@ -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;