python3Packages.mkdocstrings-python: 1.13.0 -> 1.16.10

This commit is contained in:
PerchunPak
2025-05-18 15:42:53 +02:00
parent 52f7508c52
commit 2ac7327362
@@ -10,21 +10,18 @@
mkdocstrings,
pdm-backend,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "mkdocstrings-python";
version = "1.13.0";
version = "1.16.10";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "mkdocstrings";
repo = "python";
tag = version;
hash = "sha256-NgVCKV3AWk4pRT7/+6YGXmKSZETL4ZOWDWGeb/qjdng=";
hash = "sha256-HwGo+o78SDo+RM2UxQB4A8OTY5FVuav1TS6J+aVVWdc=";
};
build-system = [ pdm-backend ];
@@ -51,11 +48,11 @@ buildPythonPackage rec {
"test_format_code"
];
meta = with lib; {
meta = {
description = "Python handler for mkdocstrings";
homepage = "https://github.com/mkdocstrings/python";
changelog = "https://github.com/mkdocstrings/python/blob/${version}/CHANGELOG.md";
license = licenses.isc;
maintainers = with maintainers; [ fab ];
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ fab ];
};
}