blob: 1e8e0cd4b1e71ef8e6fd4b4b078352d618f67712 (
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
57
58
|
{ lib
, buildPythonPackage
, fetchPypi
, docutils
, sphinx
, readthedocs-sphinx-ext
, sphinxcontrib-jquery
, pytestCheckHook
, pythonRelaxDepsHook
}:
buildPythonPackage rec {
pname = "sphinx-rtd-theme";
version = "2.0.0";
format = "setuptools";
src = fetchPypi {
pname = "sphinx_rtd_theme";
inherit version;
hash = "sha256-vV17gGIkBnYgc6BO+PrcX5FRJhVj1HAn3gmRDOA6/ms=";
};
preBuild = ''
# Don't use NPM to fetch assets. Assets are included in sdist.
export CI=1
'';
propagatedBuildInputs = [
docutils
sphinx
sphinxcontrib-jquery
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
nativeCheckInputs = [
pytestCheckHook
readthedocs-sphinx-ext
];
pythonRelaxDeps = [
"docutils"
"sphinxcontrib-jquery"
];
pythonImportsCheck = [
"sphinx_rtd_theme"
];
meta = with lib; {
description = "Sphinx theme for readthedocs.org";
homepage = "https://github.com/readthedocs/sphinx_rtd_theme";
changelog = "https://github.com/readthedocs/sphinx_rtd_theme/blob/${version}/docs/changelog.rst";
license = licenses.mit;
};
}
|