python312Packages.sphinx-versions: init at 1.1.3

Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
This commit is contained in:
Ihar Hrachyshka
2025-02-06 18:59:28 -05:00
parent c3baf31701
commit a4b4baba7f
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,43 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
click,
colorclass,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinx-versions";
version = "1.1.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-9ROFEjET+d2Dfg4DHx0IqUN34oGwY4AGbi7teK4YmR8=";
};
build-system = [
setuptools
wheel
];
dependencies = [
click
colorclass
sphinx
];
pythonImportsCheck = [
"sphinxcontrib.versioning"
];
meta = {
description = "Sphinx extension that allows building versioned docs for self-hosting";
homepage = "https://pypi.org/project/sphinx-versions/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ booxter ];
};
}
+2
View File
@@ -15409,6 +15409,8 @@ self: super: with self; {
sphinx-togglebutton = callPackage ../development/python-modules/sphinx-togglebutton { };
sphinx-versions = callPackage ../development/python-modules/sphinx-versions { };
sphinxawesome-theme = callPackage ../development/python-modules/sphinxawesome-theme { };
sphinxcontrib-actdiag = callPackage ../development/python-modules/sphinxcontrib-actdiag { };