mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
9dd56a9b1e
This is a proper fix for d2e6608aa5
The pname is used by fetchPypi, so you can't just modify it
and expect fetching to still work.
74 lines
1.6 KiB
Nix
74 lines
1.6 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pytest
|
|
, simplejson
|
|
, mock
|
|
, glibcLocales
|
|
, html5lib
|
|
, pythonOlder
|
|
, enum34
|
|
, python
|
|
, docutils
|
|
, jinja2
|
|
, pygments
|
|
, alabaster
|
|
, Babel
|
|
, snowballstemmer
|
|
, six
|
|
, sqlalchemy
|
|
, whoosh
|
|
, imagesize
|
|
, requests
|
|
, sphinxcontrib-websupport
|
|
, typing
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinx";
|
|
version = "1.7.9";
|
|
src = fetchPypi {
|
|
pname = "Sphinx";
|
|
inherit version;
|
|
sha256 = "217a7705adcb573da5bbe1e0f5cab4fa0bd89fd9342c9159121746f593c2d5a4";
|
|
};
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
checkInputs = [ pytest ];
|
|
buildInputs = [ simplejson mock glibcLocales html5lib ] ++ lib.optional (pythonOlder "3.4") enum34;
|
|
# 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
|
|
sphinxcontrib-websupport
|
|
] ++ lib.optional (pythonOlder "3.5") typing;
|
|
|
|
# Lots of tests. Needs network as well at some point.
|
|
doCheck = false;
|
|
|
|
# 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 ];
|
|
};
|
|
}
|