Commit 34fe58c3 authored by Samuel Tardieu's avatar Samuel Tardieu
Browse files

python312Packages.sphinx-lv2-theme: init at 1.4.2

parent e6a7210c
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };