nixpkgs/pkgs/development/python-modules/sphinx/default.nix

90 lines
1.7 KiB
Nix
Raw Normal View History

2017-08-11 23:55:59 -07:00
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
# propagatedBuildInputs
, Babel
, alabaster
2017-08-11 23:55:59 -07:00
, docutils
, imagesize
2017-08-11 23:55:59 -07:00
, jinja2
, packaging
2017-08-11 23:55:59 -07:00
, pygments
, requests
, setuptools
, snowballstemmer
, sphinxcontrib-applehelp
, sphinxcontrib-devhelp
, sphinxcontrib-htmlhelp
, sphinxcontrib-jsmath
, sphinxcontrib-qthelp
, sphinxcontrib-serializinghtml
2017-08-24 10:34:20 -07:00
, sphinxcontrib-websupport
# check phase
, html5lib
, imagemagick
, pytestCheckHook
, typed-ast
2017-08-11 23:55:59 -07:00
}:
buildPythonPackage rec {
2018-11-04 15:49:33 -08:00
pname = "sphinx";
2021-04-16 10:08:47 -07:00
version = "3.5.4";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "sphinx-doc";
repo = pname;
rev = "v${version}";
sha256 = "1xjii3dl01rq8x2bsxc6zywiy1s7arfgxrg5l8ml54w1748shadd";
2017-08-11 23:55:59 -07:00
};
2017-08-24 10:34:20 -07:00
2017-08-11 23:55:59 -07:00
propagatedBuildInputs = [
Babel
alabaster
2017-08-11 23:55:59 -07:00
docutils
imagesize
2017-08-11 23:55:59 -07:00
jinja2
packaging
pygments
requests
setuptools
2017-08-11 23:55:59 -07:00
snowballstemmer
sphinxcontrib-applehelp
sphinxcontrib-devhelp
sphinxcontrib-htmlhelp
sphinxcontrib-jsmath
sphinxcontrib-qthelp
sphinxcontrib-serializinghtml
# extra[docs]
2017-08-24 10:34:20 -07:00
sphinxcontrib-websupport
];
checkInputs = [
imagemagick
html5lib
pytestCheckHook
] ++ lib.optionals (pythonOlder "3.8") [
typed-ast
];
2017-08-11 23:55:59 -07:00
disabledTests = [
# requires network access
"test_anchors_ignored"
"test_defaults"
"test_defaults_json"
"test_latex_images"
];
2017-08-24 10:34:20 -07:00
meta = with lib; {
description = "Python documentation generator";
longDescription = ''
A tool that makes it easy to create intelligent and beautiful
documentation for Python projects
'';
2021-04-16 10:08:47 -07:00
homepage = "https://www.sphinx-doc.org";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
2017-08-11 23:55:59 -07:00
};
}