f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
35 lines
658 B
Nix
35 lines
658 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
poetry-core,
|
|
sphinx,
|
|
beautifulsoup4,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxawesome-theme";
|
|
version = "5.2.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "sphinxawesome_theme";
|
|
hash = "sha256-wk8eXAueR1OA0W/F8fO/2ElVgX2gkF2V9+IICdfNPF0=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
dependencies = [
|
|
sphinx
|
|
beautifulsoup4
|
|
];
|
|
|
|
pythonRelaxDeps = [ "sphinx" ];
|
|
|
|
meta = {
|
|
description = "Awesome Sphinx Theme";
|
|
homepage = "https://sphinxawesome.xyz/";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [sigmanificient];
|
|
};
|
|
}
|