blob: e11db20b64d7a142a2bf25f22759aeb8c50ff4e8 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
{ lib
, buildPythonPackage
, fetchFromGitHub
# build-system
, setuptools
# documentation build dependencies
, sphinxHook
# runtime dependencies
, sphinx
, pygments
, docutils
# test dependencies
, pytest
, beautifulsoup4
}:
buildPythonPackage rec {
pname = "sphinx-tabs";
version = "3.4.5";
format = "pyproject";
outputs = [ "out" "doc" ];
src = fetchFromGitHub {
owner = "executablebooks";
repo = "sphinx-tabs";
rev = "refs/tags/v${version}";
hash = "sha256-uFSnIhvnmg3ZURJGbSOUpLVx0EDUs/9SewspM7gtNRk=";
};
nativeBuildInputs = [
setuptools
sphinxHook
];
propagatedBuildInputs = [
sphinx
pygments
docutils
];
nativeCheckInputs = [ pytest
beautifulsoup4
];
pythonImportsCheck = [ "sphinx_tabs" ];
meta = with lib; {
description = "A sphinx extension for creating tabbed content when building HTML.";
homepage = "https://github.com/executablebooks/sphinx-tabs";
license = licenses.mit;
maintainers = with maintainers; [ kaction ];
};
}
|