python312Packages.sphinx-versions: init at 1.1.3
Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user