python-packages: update sphinxcontrib-httpdomain-1.1.9 to 1.3.0

- Tested with Python 2.6, 2.7, 3.3 and 3.4.
- Fails with pypy due to issue #6548.
This commit is contained in:
desiderius 2015-02-24 15:18:10 +01:00
parent ee41f35c40
commit 22f365d654

View file

@ -10320,11 +10320,18 @@ let
sphinxcontrib_httpdomain = buildPythonPackage (rec {
name = "sphinxcontrib-httpdomain-1.1.9";
name = "sphinxcontrib-httpdomain-1.3.0";
# See issue #6548
disabled = isPyPy;
# Check is disabled due to this issue:
# https://bitbucket.org/pypa/setuptools/issue/137/typeerror-unorderable-types-str-nonetype
doCheck = false;
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/s/sphinxcontrib-httpdomain/${name}.tar.gz";
md5 = "0f63aea612cc9e0b55a6c39e5b0f87b7";
md5 = "ad7ea42bd4c7c0ee57b1cb25bbf24aab";
};
propagatedBuildInputs = with self; [sphinx];