Merge pull request #302660 from r-ryantm/auto-update/python312Packages.mkdocstrings-python

python312Packages.mkdocstrings-python: 1.9.0 -> 1.9.2
This commit is contained in:
Fabian Affolter 2024-04-09 11:17:10 +02:00 committed by GitHub
commit ba524ce36d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 18 deletions

View File

@ -1,17 +1,18 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, griffe
, mkdocs-material
, mkdocstrings
, pdm-backend
, pytestCheckHook
, pythonOlder
{
lib,
buildPythonPackage,
fetchFromGitHub,
griffe,
mkdocs-material,
mkdocstrings,
pdm-backend,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "mkdocstrings-python";
version = "1.9.0";
version = "1.9.2";
pyproject = true;
disabled = pythonOlder "3.8";
@ -20,14 +21,12 @@ buildPythonPackage rec {
owner = "mkdocstrings";
repo = "python";
rev = "refs/tags/${version}";
hash = "sha256-RzyOhlfjLtiG5jelrRG8yS7AWQJuaJMVuNkGpNBGO64=";
hash = "sha256-UJSDnkdohFn+U7i5fYiRVMLZZ8Nyb0fdihBZl2z2RBc=";
};
nativeBuildInputs = [
pdm-backend
];
build-system = [ pdm-backend ];
propagatedBuildInputs = [
dependencies = [
griffe
mkdocstrings
];
@ -37,9 +36,7 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"mkdocstrings_handlers"
];
pythonImportsCheck = [ "mkdocstrings_handlers" ];
meta = with lib; {
description = "Python handler for mkdocstrings";