croc: 10.1.1 -> 10.1.3 (#364662)
[NixPkgs.git] / pkgs / development / python-modules / mkdocs-autolinks-plugin / default.nix
blobc837ff25ceb67f697a409e434cc4d1d2f6740705
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   mkdocs,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "mkdocs-autolinks-plugin";
12   version = "071";
13   pyproject = true;
14   disabled = pythonOlder "3.8";
16   src = fetchFromGitHub {
17     owner = "zachhannum";
18     repo = "mkdocs-autolinks-plugin";
19     # The commit messages mention version 0.7.1, but the tag is v_071.
20     rev = "refs/tags/v_${version}";
21     hash = "sha256-mEbuB9VwK7po1TqtJfBSkItOVlI3/W3nD2LYRHgPpTA=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ mkdocs ];
28   # Module has no tests.
29   doCheck = false;
31   pythonImportsCheck = [ "mkdocs_autolinks_plugin" ];
33   meta = with lib; {
34     description = "MkDocs plugin that simplifies relative linking between documents";
35     homepage = "https://github.com/zachhannum/mkdocs-autolinks-plugin";
36     license = licenses.mit;
37     maintainers = with maintainers; [ lucas-deangelis ];
38   };