1{
2 buildPythonPackage,
3 fetchPypi,
4 lib,
5 poetry-core,
6 sphinx,
7 beautifulsoup4,
8}:
9
10buildPythonPackage rec {
11 pname = "sphinxawesome-theme";
12 version = "5.3.2";
13 pyproject = true;
14
15 src = fetchPypi {
16 inherit version;
17 pname = "sphinxawesome_theme";
18 hash = "sha256-BinTi4Cu/CebEYbFOnpvryHnIbWy7NoU9IjKEHTiYx8=";
19 };
20
21 build-system = [ poetry-core ];
22 dependencies = [
23 sphinx
24 beautifulsoup4
25 ];
26
27 pythonRelaxDeps = [ "sphinx" ];
28
29 meta = {
30 description = "Awesome Sphinx Theme";
31 homepage = "https://sphinxawesome.xyz/";
32 license = lib.licenses.mit;
33 maintainers = with lib.maintainers; [ sigmanificient ];
34 };
35}