python3Packages.mkdocstrings-python: 2.0.1 -> 2.0.2 (#490448)

This commit is contained in:
Fabian Affolter
2026-02-15 10:15:58 +00:00
committed by GitHub
@@ -12,16 +12,16 @@
pytestCheckHook,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "mkdocstrings-python";
version = "2.0.1";
version = "2.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "mkdocstrings";
repo = "python";
tag = version;
hash = "sha256-xaLC4zzX18lzYNpNJQrx3IXcZ22qQgktzzzgKDef8xE=";
tag = finalAttrs.version;
hash = "sha256-MCR304sOqlS4azZOoNa4klITDdr+bD8N6wEZBuHhZms=";
};
build-system = [ pdm-backend ];
@@ -51,8 +51,8 @@ buildPythonPackage rec {
meta = {
description = "Python handler for mkdocstrings";
homepage = "https://github.com/mkdocstrings/python";
changelog = "https://github.com/mkdocstrings/python/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/mkdocstrings/python/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ fab ];
};
}
})