Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 49 lines 1.0 kB view raw
1{ 2 # Evaluation 3 lib, 4 buildPythonPackage, 5 fetchFromGitHub, 6 7 # Build 8 setuptools, 9 10 # Dependencies 11 gitpython, 12 mkdocs, 13 requests, 14}: 15 16buildPythonPackage rec { 17 pname = "mkdocs-git-committers-plugin-2"; 18 version = "2.5.0"; 19 pyproject = true; 20 21 src = fetchFromGitHub { 22 owner = "ojacques"; 23 repo = "mkdocs-git-committers-plugin-2"; 24 tag = version; 25 hash = "sha256-PpXgY5RlOeb0mB46gcNVWkSGMZa4WPkCwDUXMxCUjsI="; 26 }; 27 28 build-system = [ 29 setuptools 30 ]; 31 32 dependencies = [ 33 gitpython 34 mkdocs 35 requests 36 ]; 37 38 # Upstream has no tests 39 doCheck = false; 40 pythonImportsCheck = [ "mkdocs_git_committers_plugin_2" ]; 41 42 meta = { 43 description = "MkDocs plugin for displaying a list of contributors on each page"; 44 homepage = "https://github.com/ojacques/mkdocs-git-committers-plugin-2"; 45 changelog = "https://github.com/ojacques/mkdocs-git-committers-plugin-2/releases/tag/${src.tag}"; 46 license = lib.licenses.mit; 47 maintainers = with lib.maintainers; [ mahtaran ]; 48 }; 49}