python310Packages.sphinx-sitemap: init at 2.5.1
Sitemap generator for Sphinx https://github.com/jdillard/sphinx-sitemap
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, sphinx
|
||||
, pytest
|
||||
,
|
||||
}:
|
||||
let
|
||||
pname = "sphinx-sitemap";
|
||||
version = "2.5.1";
|
||||
in
|
||||
buildPythonPackage {
|
||||
inherit pname version;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-mEvvBou9vCbPriCai2E5LpaBq8kZG0d80w2kBuOmDuU=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
sphinx
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
checkPhase = ''
|
||||
pytest --fixtures tests
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Sitemap generator for Sphinx";
|
||||
homepage = "https://github.com/jdillard/sphinx-sitemap";
|
||||
maintainers = with maintainers; [ alejandrosame ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
@@ -13083,6 +13083,8 @@ self: super: with self; {
|
||||
|
||||
sphinx-prompt = callPackage ../development/python-modules/sphinx-prompt { };
|
||||
|
||||
sphinx-sitemap = callPackage ../development/python-modules/sphinx-sitemap { };
|
||||
|
||||
sphinx-thebe = callPackage ../development/python-modules/sphinx-thebe { };
|
||||
|
||||
sphinx-tabs = callPackage ../development/python-modules/sphinx-tabs { };
|
||||
|
||||
Reference in New Issue
Block a user