Initial Packages

This commit was merged in pull request #1.
This commit is contained in:
2026-05-31 21:15:28 +02:00
parent e06dc2c7f9
commit 678ba70af9
14 changed files with 690 additions and 0 deletions
+30
View File
@@ -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
];
}