Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mkdocs-autolinks-plugin / default.nix
blob35d3e5c9cc165d4efb7031d97dfa6024094e7ab5
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , mkdocs
5 , pythonOlder
6 , setuptools
7 }:
9 buildPythonPackage rec {
10   pname = "mkdocs-autolinks-plugin";
11   version = "0.7.1";
12   pyproject = true;
13   disabled = pythonOlder "3.8";
15   src = fetchFromGitHub {
16     owner = "zachhannum";
17     repo = "mkdocs-autolinks-plugin";
18     # The commit messages mention version 0.7.1, but the tag is v_071.
19     rev = "e2b649eb4db23459bcec121838f27c92c81f9ce1";
20     hash = "sha256-mEbuB9VwK7po1TqtJfBSkItOVlI3/W3nD2LYRHgPpTA=";
21   };
23   build-system = [
24     setuptools
25   ];
27   dependencies = [ mkdocs ];
29   # Module has no tests.
30   doCheck = false;
32   pythonImportsCheck = [ "mkdocs_autolinks_plugin" ];
34   meta = with lib; {
35     description = "An MkDocs plugin that simplifies relative linking between documents";
36     homepage = "https://github.com/zachhannum/mkdocs-autolinks-plugin";
37     license = licenses.mit;
38     maintainers = with maintainers; [ lucas-deangelis ];
39   };