5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{ 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
|
|
];
|
|
|
|
disabledTests = [
|
|
# docutils 0.21 compat
|
|
"test_basic"
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|