1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, sphinx
5}:
6
7buildPythonPackage rec {
8 pname = "sphinxcontrib-httpdomain";
9 version = "1.7.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "ac40b4fba58c76b073b03931c7b8ead611066a6aebccafb34dc19694f4eb6335";
14 };
15
16 propagatedBuildInputs = [ sphinx ];
17
18 # Check is disabled due to this issue:
19 # https://bitbucket.org/pypa/setuptools/issue/137/typeerror-unorderable-types-str-nonetype
20 doCheck = false;
21
22 meta = with stdenv.lib; {
23 description = "Provides a Sphinx domain for describing RESTful HTTP APIs";
24 homepage = https://bitbucket.org/birkenfeld/sphinx-contrib;
25 license = licenses.bsd0;
26 };
27
28}