blob: 1b199aa4e98235f304860f060f57d0fa2739d5d3 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
docutils,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinx-togglebutton";
version = "0.3.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-qwyLNmQnsB5MiYAtXQeEcsQn+m6dEtUhw0+gRCVZ3Ho=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
docutils
sphinx
];
pythonImportsCheck = [ "sphinx_togglebutton" ];
meta = {
description = "Toggle page content and collapse admonitions in Sphinx";
homepage = "https://github.com/executablebooks/sphinx-togglebutton";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|