blob: e32f0584494efedff04fca6b396687583464e2be (
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
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchPypi,
flit-core,
click,
pyyaml,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinx-external-toc";
version = "1.0.1";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "sphinx_external_toc";
hash = "sha256-p9LGPMR+xohUZEOyi8TvRmEhgn7z3Hu1Cd41S61OouA=";
};
nativeBuildInputs = [ flit-core ];
propagatedBuildInputs = [
click
pyyaml
sphinx
];
pythonImportsCheck = [ "sphinx_external_toc" ];
meta = {
description = "Sphinx extension that allows the site-map to be defined in a single YAML file";
mainProgram = "sphinx-etoc";
homepage = "https://github.com/executablebooks/sphinx-external-toc";
changelog = "https://github.com/executablebooks/sphinx-external-toc/raw/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|