587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
32 lines
774 B
Nix
32 lines
774 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, mkdocs
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mkdocs-git-authors-plugin";
|
|
version = "0.8.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "timvink";
|
|
repo = "mkdocs-git-authors-plugin";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ie6kDrj7ulmdQ7w3n7MnKgIWs321uPFxpQC3DNUGsTg=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mkdocs ];
|
|
|
|
pythonImportsCheck = [ "mkdocs_git_authors_plugin" ];
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight MkDocs plugin to display git authors of a markdown page";
|
|
homepage = "https://github.com/timvink/mkdocs-git-authors-plugin";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ totoroot ];
|
|
};
|
|
}
|