Unverified Commit d99d6fe6 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents 26d5901e 19a86499
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})