Commit f9f7de76 authored by Sigmanificient's avatar Sigmanificient
Browse files

python311Packages.sphinxawesome-theme: init at 5.1.4

parent fc538a5e
Loading
Loading
Loading
Loading
+36 −0
Original line number Diff line number Diff line
{
  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];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -14299,6 +14299,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 { };