Merge pull request #314095 from Sigmanificient/sphinxawesome_theme

python311Packages.sphinxawesome-theme: init at 5.1.4
This commit is contained in:
Pol Dellaiera 2024-05-31 14:56:50 +02:00 committed by GitHub
commit 5ceeafa47d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 38 additions and 0 deletions

@ -0,0 +1,36 @@
{
buildPythonPackage,
fetchPypi,
lib,
poetry-core,
sphinx,
beautifulsoup4,
pythonRelaxDepsHook
}:
buildPythonPackage rec {
pname = "sphinxawesome-theme";
version = "5.1.4";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "sphinxawesome_theme";
hash = "sha256-OwikuKJrPo4vNaud/9JToYYJePV6Kew8izYbr/qKTtQ=";
};
build-system = [ poetry-core pythonRelaxDepsHook ];
dependencies = [
sphinx
beautifulsoup4
];
pythonRelaxDeps = [ "sphinx" ];
meta = {
description = "Awesome Sphinx Theme";
homepage = "https://sphinxawesome.xyz/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [sigmanificient];
};
}

@ -14309,6 +14309,8 @@ self: super: with self; {
sphinx-togglebutton = callPackage ../development/python-modules/sphinx-togglebutton { };
sphinxawesome-theme = callPackage ../development/python-modules/sphinxawesome-theme { };
sphinxcontrib-actdiag = callPackage ../development/python-modules/sphinxcontrib-actdiag { };
sphinxcontrib-apidoc = callPackage ../development/python-modules/sphinxcontrib-apidoc { };