1{ lib
2, buildPythonPackage
3, fetchPypi
4, sphinx
5}:
6
7buildPythonPackage rec {
8 pname = "sphinx-multitoc-numbering";
9 version = "0.1.3";
10 format = "pyproject";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "c9607671ac511236fa5d61a7491c1031e700e8d498c9d2418e6c61d1251209ae";
15 };
16
17 propagatedBuildInputs = [ sphinx ];
18
19 pythonImportsCheck = [ "sphinx_multitoc_numbering" ];
20
21 meta = with lib; {
22 description = "Supporting continuous HTML section numbering";
23 homepage = "https://github.com/executablebooks/sphinx-multitoc-numbering";
24 license = licenses.mit;
25 maintainers = with maintainers; [ marsam ];
26 };
27}