mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-23 04:25:14 +00:00
Merge pull request #314095 from Sigmanificient/sphinxawesome_theme
python311Packages.sphinxawesome-theme: init at 5.1.4
This commit is contained in:
commit
5ceeafa47d
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user