python3Packages.mkdocs-section-index: init at 0.3.10

This commit is contained in:
Pol Dellaiera
2025-11-10 23:08:56 +01:00
parent c5c94172d9
commit fdeef40d0b
2 changed files with 54 additions and 0 deletions
@@ -0,0 +1,52 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
mkdocs,
pytestCheckHook,
mechanicalsoup,
testfixtures,
pytest-golden,
mkdocs-material,
}:
buildPythonPackage rec {
pname = "mkdocs-section-index";
version = "0.3.10";
pyproject = true;
src = fetchFromGitHub {
owner = "oprypin";
repo = "mkdocs-section-index";
tag = "v${version}";
hash = "sha256-cw/a17xliK68vStC20f+IHI3nQl1/s/lIIj1tyQJti0=";
};
build-system = [
hatchling
];
dependencies = [
mkdocs
];
pythonImportsCheck = [
"mkdocs_section_index"
];
nativeCheckInputs = [
pytestCheckHook
mechanicalsoup
testfixtures
pytest-golden
mkdocs-material
];
meta = {
description = "MkDocs plugin to allow clickable sections that lead to an index page";
homepage = "https://github.com/oprypin/mkdocs-section-index";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drupol ];
};
}
+2
View File
@@ -9581,6 +9581,8 @@ self: super: with self; {
mkdocs-rss-plugin = callPackage ../development/python-modules/mkdocs-rss-plugin { };
mkdocs-section-index = callPackage ../development/python-modules/mkdocs-section-index { };
mkdocs-simple-blog = callPackage ../development/python-modules/mkdocs-simple-blog { };
mkdocs-swagger-ui-tag = callPackage ../development/python-modules/mkdocs-swagger-ui-tag { };