Initial Packages
This commit was merged in pull request #1.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
{
|
||||
python3Packages,
|
||||
fetchFromGitHub,
|
||||
sphinx-last-updated-by-git,
|
||||
}:
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "sphinx-sitemap";
|
||||
version = "2.9.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jdillard";
|
||||
repo = "sphinx-sitemap";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-TiR6F9wMWOGYexSKDzbSPPq0oiIDrZwSiO3a9DajL+0=";
|
||||
};
|
||||
|
||||
build-system = [ python3Packages.setuptools ];
|
||||
|
||||
dependencies = [
|
||||
python3Packages.sphinx
|
||||
sphinx-last-updated-by-git
|
||||
];
|
||||
|
||||
nativeCheckInputs = with python3Packages; [
|
||||
pytestCheckHook
|
||||
sphinx-pytest
|
||||
defusedxml
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user