forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
python3Packages.mkdocs-git-committers-plugin-2: init at 2.4.1 (NixOS#…
- Loading branch information
Showing
3 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13756,6 +13756,17 @@ | |
githubId = 24735185; | ||
name = "Mahmoud Ayman"; | ||
}; | ||
mahtaran = { | ||
email = "[email protected]"; | ||
github = "mahtaran"; | ||
githubId = 22727323; | ||
name = "Luka Leer"; | ||
keys = [ | ||
{ | ||
fingerprint = "C7FF B72E 0527 423A D470 E132 AA82 C4EB CB16 82E0"; | ||
} | ||
]; | ||
}; | ||
majesticmullet = { | ||
email = "[email protected]"; | ||
github = "MajesticMullet"; | ||
|
52 changes: 52 additions & 0 deletions
52
pkgs/development/python-modules/mkdocs-git-committers-plugin-2/default.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
# Evaluation | ||
lib, | ||
buildPythonPackage, | ||
fetchFromGitHub, | ||
pythonOlder, | ||
|
||
# Build | ||
setuptools, | ||
|
||
# Dependencies | ||
gitpython, | ||
mkdocs, | ||
requests, | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "mkdocs-git-committers-plugin-2"; | ||
version = "2.4.1"; | ||
pyproject = true; | ||
|
||
disabled = pythonOlder "3.8"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "ojacques"; | ||
repo = "mkdocs-git-committers-plugin-2"; | ||
rev = "refs/tags/${version}"; | ||
hash = "sha256-hKt0K5gOkdUDwTlyMTwodl4gD1RD+s+CM+zEpngSnlc="; | ||
}; | ||
|
||
build-system = [ | ||
setuptools | ||
]; | ||
|
||
dependencies = [ | ||
gitpython | ||
mkdocs | ||
requests | ||
]; | ||
|
||
# Upstream has no tests | ||
doCheck = false; | ||
pythonImportsCheck = [ "mkdocs_git_committers_plugin_2" ]; | ||
|
||
meta = { | ||
description = "MkDocs plugin for displaying a list of contributors on each page"; | ||
homepage = "https://github.com/ojacques/mkdocs-git-committers-plugin-2"; | ||
changelog = "https://github.com/ojacques/mkdocs-git-committers-plugin-2/releases/tag/${version}"; | ||
license = lib.licenses.mit; | ||
maintainers = with lib.maintainers; [ mahtaran ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters