evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / sphinx-sitemap / default.nix
blobf2ad32e67a43883deb904577e3790550c9daa328
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools,
6   sphinx,
7   sphinx-pytest,
8   defusedxml,
9   pytestCheckHook,
11 let
12   pname = "sphinx-sitemap";
13   version = "2.6.0";
15 buildPythonPackage {
16   inherit pname version;
17   pyproject = true;
19   src = fetchFromGitHub {
20     owner = "jdillard";
21     repo = "sphinx-sitemap";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-RERa+/MVug2OQ/FAXS4LOQHB4eEuIW2rwcdZUOrr6g8=";
24   };
26   nativeBuildInputs = [ setuptools ];
28   propagatedBuildInputs = [ sphinx ];
30   nativeCheckInputs = [
31     pytestCheckHook
32     sphinx-pytest
33     defusedxml
34   ];
36   meta = with lib; {
37     changelog = "https://github.com/jdillard/sphinx-sitemap/releases/tag/v${version}";
38     description = "Sitemap generator for Sphinx";
39     homepage = "https://github.com/jdillard/sphinx-sitemap";
40     maintainers = with maintainers; [ alejandrosame ];
41     license = licenses.mit;
42   };