blob: ee63498b59559ac50717fdb6a02b8c4218398c22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
buildPythonPackage,
fetchPypi,
lib,
poetry-core,
sphinx,
beautifulsoup4,
}:
buildPythonPackage (finalAttrs: {
pname = "sphinxawesome-theme";
version = "5.3.2";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) version;
pname = "sphinxawesome_theme";
hash = "sha256-BinTi4Cu/CebEYbFOnpvryHnIbWy7NoU9IjKEHTiYx8=";
};
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 ];
};
})
|