9 buildPythonPackage rec {
10 pname = "mkdocs-git-authors-plugin";
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
18 repo = "mkdocs-git-authors-plugin";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-UomcEXWNt5aVE9JxP9wskkHkFYXKN/+jXwr1SXCmeyE=";
23 propagatedBuildInputs = [ mkdocs ];
25 pythonImportsCheck = [ "mkdocs_git_authors_plugin" ];
28 description = "Lightweight MkDocs plugin to display git authors of a markdown page";
29 homepage = "https://github.com/timvink/mkdocs-git-authors-plugin";
30 license = licenses.mit;
31 maintainers = with maintainers; [ totoroot ];