blob: bae64efe894900df60842ab7708435a87a9c7a0f (
plain) (
blame)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
hatch-vcs,
hatchling,
pythonOlder,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinx-thebe";
version = "0.3.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit version;
pname = "sphinx_thebe";
hash = "sha256-V2BH9FVg6C9kql8VIAsesJTc/hxbj1MaimW9II4lpJM=";
};
nativeBuildInputs = [
hatch-vcs
hatchling
];
propagatedBuildInputs = [ sphinx ];
pythonImportsCheck = [ "sphinx_thebe" ];
meta = with lib; {
description = "Integrate interactive code blocks into your documentation with Thebe and Binder";
homepage = "https://github.com/executablebooks/sphinx-thebe";
changelog = "https://github.com/executablebooks/sphinx-thebe/releases/tag/v${version}";
license = licenses.mit;
maintainers = [ ];
};
}
|