python3Packages.mkdocs-include-markdown-plugin: init at 7.1.6

This commit is contained in:
Alexander Sieg
2025-08-27 11:33:36 +02:00
parent e2642aa7d5
commit b8edfce11e
2 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
mkdocs,
wcmatch,
platformdirs,
}:
buildPythonPackage rec {
pname = "mkdocs-include-markdown-plugin";
version = "7.1.6";
pyproject = true;
src = fetchPypi {
pname = "mkdocs_include_markdown_plugin";
inherit version;
hash = "sha256-oHU8uCcEwQoofx54n8mEj4K2vrh0mBSySwPdn2eBZnc=";
};
build-system = [
hatchling
];
dependencies = [
mkdocs
wcmatch
];
optional-dependencies = {
cache = [
platformdirs
];
};
pythonImportsCheck = [
"mkdocs_include_markdown_plugin"
];
meta = {
description = "Mkdocs Markdown includer plugin";
homepage = "https://pypi.org/project/mkdocs-include-markdown-plugin/";
license = lib.licenses.asl20;
teams = [ lib.teams.cyberus ];
};
}

View File

@@ -9451,6 +9451,10 @@ self: super: with self; {
mkdocs-graphviz = callPackage ../development/python-modules/mkdocs-graphviz { };
mkdocs-include-markdown-plugin =
callPackage ../development/python-modules/mkdocs-include-markdown-plugin
{ };
mkdocs-jupyter = callPackage ../development/python-modules/mkdocs-jupyter { };
mkdocs-linkcheck = callPackage ../development/python-modules/mkdocs-linkcheck { };