python312Packages.sphinx-lv2-theme: init at 1.4.2

This commit is contained in:
Samuel Tardieu 2024-10-25 16:29:23 +02:00
parent e6a7210c33
commit 34fe58c3a1
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{
buildPythonPackage,
lib,
fetchFromGitLab,
setuptools,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinx-lv2-theme";
version = "1.4.2";
pyproject = true;
src = fetchFromGitLab {
owner = "LV2";
repo = "sphinx_lv2_theme";
rev = "v${version}";
hash = "sha256-x3h2hOQIyzOmnh58WMHjuOARdML1sDiVAf7m0YghhJ4=";
};
build-system = [ setuptools ];
dependencies = [ sphinx ];
pythonImportsCheck = [ "sphinx_lv2_theme" ];
meta = {
description = "Sphinx theme in the style of the LV2 plugin";
homepage = "https://gitlab.com/lv2/sphinx_lv2_theme";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ samueltardieu ];
};
}

View File

@ -14773,6 +14773,8 @@ self: super: with self; {
sphinx-jupyterbook-latex = callPackage ../development/python-modules/sphinx-jupyterbook-latex { }; sphinx-jupyterbook-latex = callPackage ../development/python-modules/sphinx-jupyterbook-latex { };
sphinx-lv2-theme = callPackage ../development/python-modules/sphinx-lv2-theme { };
sphinx-multitoc-numbering = callPackage ../development/python-modules/sphinx-multitoc-numbering { }; sphinx-multitoc-numbering = callPackage ../development/python-modules/sphinx-multitoc-numbering { };
sphinx-notfound-page = callPackage ../development/python-modules/sphinx-notfound-page { }; sphinx-notfound-page = callPackage ../development/python-modules/sphinx-notfound-page { };