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

74 lines
1.6 KiB
Nix
Raw Normal View History

2017-08-12 08:55:59 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, simplejson
, mock
, glibcLocales
, html5lib
, pythonOlder
, enum34
, python
, docutils
, jinja2
, pygments
, alabaster
, Babel
, snowballstemmer
, six
, sqlalchemy
, whoosh
, imagesize
, requests
2017-08-24 19:34:20 +02:00
, sphinxcontrib-websupport
, typing
2017-08-12 08:55:59 +02:00
}:
buildPythonPackage rec {
2018-11-05 00:49:33 +01:00
pname = "sphinx";
2019-01-17 16:10:47 +01:00
version = "1.8.3";
2017-08-12 08:55:59 +02:00
src = fetchPypi {
pname = "Sphinx";
inherit version;
2019-01-17 16:10:47 +01:00
sha256 = "c4cb17ba44acffae3d3209646b6baec1e215cad3065e852c68cc569d4df1b9f8";
2017-08-12 08:55:59 +02:00
};
LC_ALL = "en_US.UTF-8";
2017-08-24 19:34:20 +02:00
checkInputs = [ pytest ];
buildInputs = [ simplejson mock glibcLocales html5lib ] ++ lib.optional (pythonOlder "3.4") enum34;
2017-08-12 08:55:59 +02:00
# Disable two tests that require network access.
checkPhase = ''
cd tests; ${python.interpreter} run.py --ignore py35 -k 'not test_defaults and not test_anchors_ignored'
'';
propagatedBuildInputs = [
docutils
jinja2
pygments
alabaster
Babel
snowballstemmer
six
sqlalchemy
whoosh
imagesize
requests
2017-08-24 19:34:20 +02:00
sphinxcontrib-websupport
] ++ lib.optional (pythonOlder "3.5") typing;
2017-08-12 08:55:59 +02:00
2017-08-24 19:34:20 +02:00
# Lots of tests. Needs network as well at some point.
doCheck = false;
2017-08-12 08:55:59 +02:00
# https://github.com/NixOS/nixpkgs/issues/22501
# Do not run `python sphinx-build arguments` but `sphinx-build arguments`.
postPatch = ''
substituteInPlace sphinx/make_mode.py --replace "sys.executable, " ""
'';
meta = {
description = "A tool that makes it easy to create intelligent and beautiful documentation for Python projects";
homepage = http://sphinx.pocoo.org/;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ nand0p ];
};
}