Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / mkdocs-redirects / default.nix
blob2bef26944d244842c5baecaea31adaab7e0f7e5d
1 { lib
2 , callPackage
3 , buildPythonPackage
4 , fetchFromGitHub
5 , mkdocs
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "mkdocs-redirects";
11   version = "1.2.1";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "mkdocs";
16     repo = pname;
17     rev = "refs/tags/v${version}";
18     hash = "sha256-zv/tCsC2wrD0iH7Kvlq4nXJMPMGQ7+l68Y/q/x66LBg=";
19   };
21   propagatedBuildInputs = [
22     mkdocs
23   ];
25   nativeCheckInputs = [
26     pytestCheckHook
27   ];
29   pythonImportsCheck = [
30     "mkdocs_redirects"
31   ];
33   meta = with lib; {
34     description = "Open source plugin for Mkdocs page redirects";
35     homepage = "https://github.com/mkdocs/mkdocs-redirects";
36     license = licenses.mit;
37     maintainers = with maintainers; [ tfc ];
38   };