10 buildPythonPackage rec {
11 pname = "mkdocs-autolinks-plugin";
14 disabled = pythonOlder "3.8";
16 src = fetchFromGitHub {
18 repo = "mkdocs-autolinks-plugin";
19 # The commit messages mention version 0.7.1, but the tag is v_071.
20 rev = "refs/tags/v_${version}";
21 hash = "sha256-mEbuB9VwK7po1TqtJfBSkItOVlI3/W3nD2LYRHgPpTA=";
24 build-system = [ setuptools ];
26 dependencies = [ mkdocs ];
28 # Module has no tests.
31 pythonImportsCheck = [ "mkdocs_autolinks_plugin" ];
34 description = "MkDocs plugin that simplifies relative linking between documents";
35 homepage = "https://github.com/zachhannum/mkdocs-autolinks-plugin";
36 license = licenses.mit;
37 maintainers = with maintainers; [ lucas-deangelis ];