depot/third_party/nixpkgs/pkgs/development/python-modules/sphinxawesome-theme/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

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];
};
}