Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mkdocs-git-authors-plugin / default.nix
blob01eb0fa2375e45bc052e800e15b71b0e85cb2a79
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , mkdocs
6 }:
8 buildPythonPackage rec {
9   pname = "mkdocs-git-authors-plugin";
10   version = "0.8.0";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchFromGitHub {
16     owner = "timvink";
17     repo = "mkdocs-git-authors-plugin";
18     rev = "refs/tags/v${version}";
19     hash = "sha256-ie6kDrj7ulmdQ7w3n7MnKgIWs321uPFxpQC3DNUGsTg=";
20   };
22   propagatedBuildInputs = [ mkdocs ];
24   pythonImportsCheck = [ "mkdocs_git_authors_plugin" ];
26   meta = with lib; {
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 ];
31   };