48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
![]() |
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, pythonOlder
|
||
|
, gitpython
|
||
|
, mkdocs
|
||
|
, pytz
|
||
|
, pytestCheckHook
|
||
|
, git
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "mkdocs-git-revision-date-localized-plugin";
|
||
|
version = "1.2.0";
|
||
|
format = "setuptools";
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "timvink";
|
||
|
repo = "mkdocs-git-revision-date-localized-plugin";
|
||
|
rev = "v${version}" ;
|
||
|
hash = "sha256-l7NUmsdd1FHkbdqtRcMQBfplZJgLCXrN+QuYaQLpz0k=";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
gitpython
|
||
|
mkdocs
|
||
|
pytz
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||
|
|
||
|
disabledTestPaths = [
|
||
|
"tests/test_builds.py"
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [ "mkdocs_git_revision_date_localized_plugin" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "MkDocs plugin that enables displaying the date of the last git modification of a page";
|
||
|
homepage = "https://github.com/timvink/mkdocs-git-revision-date-localized-plugin";
|
||
|
changelog = "https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/releases/tag/v${version}";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ totoroot ];
|
||
|
};
|
||
|
}
|