1{ lib
2, buildPythonPackage
3, fetchPypi
4, sphinx
5}:
6
7buildPythonPackage rec {
8 pname = "sphinxcontrib-httpdomain";
9 version = "1.8.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "2059cfabd0cca8fcc3455cc8ffad92f0915a7d3bb03bfddba078a6a0f35beec5";
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 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}