python312Packages.sphinx-lv2-theme: init at 1.4.2
This commit is contained in:
parent
e6a7210c33
commit
34fe58c3a1
33
pkgs/development/python-modules/sphinx-lv2-theme/default.nix
Normal file
33
pkgs/development/python-modules/sphinx-lv2-theme/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -14773,6 +14773,8 @@ self: super: with self; {
|
||||
|
||||
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-notfound-page = callPackage ../development/python-modules/sphinx-notfound-page { };
|
||||
|
Loading…
Reference in New Issue
Block a user