blob: 05515928fee951dd3b56846698cd258541eba2d3 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
sphinx,
setuptools,
}:
buildPythonPackage rec {
pname = "sphinx-multitoc-numbering";
version = "0.1.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-yWB2caxREjb6XWGnSRwQMecA6NSYydJBjmxh0SUSCa4=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ sphinx ];
pythonImportsCheck = [ "sphinx_multitoc_numbering" ];
meta = {
description = "Supporting continuous HTML section numbering";
homepage = "https://github.com/executablebooks/sphinx-multitoc-numbering";
changelog = "https://github.com/executablebooks/sphinx-multitoc-numbering/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|