8 buildPythonPackage rec {
9 pname = "mkdocs-git-authors-plugin";
11 format = "setuptools";
13 disabled = pythonOlder "3.7";
15 src = fetchFromGitHub {
17 repo = "mkdocs-git-authors-plugin";
18 rev = "refs/tags/v${version}";
19 hash = "sha256-ie6kDrj7ulmdQ7w3n7MnKgIWs321uPFxpQC3DNUGsTg=";
22 propagatedBuildInputs = [ mkdocs ];
24 pythonImportsCheck = [ "mkdocs_git_authors_plugin" ];
27 description = "Lightweight MkDocs plugin to display git authors of a markdown page";
28 homepage = "https://github.com/timvink/mkdocs-git-authors-plugin";
29 license = licenses.mit;
30 maintainers = with maintainers; [ totoroot ];