9 buildPythonPackage rec {
10 pname = "mkdocs-autolinks-plugin";
13 disabled = pythonOlder "3.8";
15 src = fetchFromGitHub {
17 repo = "mkdocs-autolinks-plugin";
18 # The commit messages mention version 0.7.1, but the tag is v_071.
19 rev = "e2b649eb4db23459bcec121838f27c92c81f9ce1";
20 hash = "sha256-mEbuB9VwK7po1TqtJfBSkItOVlI3/W3nD2LYRHgPpTA=";
27 dependencies = [ mkdocs ];
29 # Module has no tests.
32 pythonImportsCheck = [ "mkdocs_autolinks_plugin" ];
35 description = "An MkDocs plugin that simplifies relative linking between documents";
36 homepage = "https://github.com/zachhannum/mkdocs-autolinks-plugin";
37 license = licenses.mit;
38 maintainers = with maintainers; [ lucas-deangelis ];