pythonPackages.sphinx: 1.5.1 -> 1.5.2

This commit is contained in:
Frederik Rietdijk 2017-02-07 08:49:04 +01:00
parent 6640fe2e1e
commit c73045ef10

View File

@ -24456,16 +24456,16 @@ in {
sphinx = buildPythonPackage (rec { sphinx = buildPythonPackage (rec {
name = "${pname}-${version}"; name = "${pname}-${version}";
pname = "Sphinx"; pname = "Sphinx";
version = "1.5.1"; version = "1.5.2";
src = pkgs.fetchurl { src = fetchPypi {
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz"; inherit pname version;
sha256 = "8e6a77a20b2df950de322fc32f3b508697d9d654fe984e3cc88f446a5b4c17c5"; sha256 = "049c48393909e4704a6ed4de76fd39c8622e165414660bfb767e981e7931c722";
}; };
LC_ALL = "en_US.UTF-8"; LC_ALL = "en_US.UTF-8";
buildInputs = with self; [ nose simplejson mock pkgs.glibcLocales html5lib ] ++ optional (pythonOlder "3.4") self.enum34; buildInputs = with self; [ pytest simplejson mock pkgs.glibcLocales html5lib ] ++ optional (pythonOlder "3.4") self.enum34;
# Disable two tests that require network access. # Disable two tests that require network access.
checkPhase = '' checkPhase = ''
NOSE_EXCLUDE=test_defaults,test_anchors_ignored make test cd tests; ${python.interpreter} run.py --ignore py35 -k 'not test_defaults and not test_anchors_ignored'
''; '';
propagatedBuildInputs = with self; [ propagatedBuildInputs = with self; [
docutils docutils