Merge pull request #297453 from lucas-deangelis/master

python312Packages.mkdocs-autolinks-plugin: init at 0.7.1
This commit is contained in:
OTABI Tomoya 2024-03-27 23:40:45 +09:00 committed by GitHub
commit 991689bc5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 50 additions and 0 deletions

View File

@ -11531,6 +11531,15 @@
githubId = 3717454;
name = "Lucas Bergman";
};
lucas-deangelis = {
email = "deangelis.lucas@outlook.com";
github = "lucas-deangelis";
githubId = 55180995;
name = "Lucas De Angelis";
keys = [{
fingerprint = "3C8B D3AD 93BB 1F36 B8FF 30BD 8627 E5ED F74B 5BF4";
}];
};
lucasew = {
email = "lucas59356@gmail.com";
github = "lucasew";

View File

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, mkdocs
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "mkdocs-autolinks-plugin";
version = "0.7.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "zachhannum";
repo = "mkdocs-autolinks-plugin";
# The commit messages mention version 0.7.1, but the tag is v_071.
rev = "e2b649eb4db23459bcec121838f27c92c81f9ce1";
hash = "sha256-mEbuB9VwK7po1TqtJfBSkItOVlI3/W3nD2LYRHgPpTA=";
};
build-system = [
setuptools
];
dependencies = [ mkdocs ];
# Module has no tests.
doCheck = false;
pythonImportsCheck = [ "mkdocs_autolinks_plugin" ];
meta = with lib; {
description = "An MkDocs plugin that simplifies relative linking between documents";
homepage = "https://github.com/zachhannum/mkdocs-autolinks-plugin";
license = licenses.mit;
maintainers = with maintainers; [ lucas-deangelis ];
};
}

View File

@ -7356,6 +7356,7 @@ self: super: with self; {
mizani = callPackage ../development/python-modules/mizani { };
mkdocs = callPackage ../development/python-modules/mkdocs { };
mkdocs-autolinks-plugin = callPackage ../development/python-modules/mkdocs-autolinks-plugin { };
mkdocs-autorefs = callPackage ../development/python-modules/mkdocs-autorefs { };
mkdocs-drawio-exporter = callPackage ../development/python-modules/mkdocs-drawio-exporter { };
mkdocs-exclude = callPackage ../development/python-modules/mkdocs-exclude { };