1{ lib
2, buildPythonPackage
3, fetchPypi
4, sphinx
5}:
6
7buildPythonPackage rec {
8 pname = "sphinxcontrib-httpdomain";
9 version = "1.8.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 hash = "sha256-bC3+bKKC119m3zM4absM5zMcAbR122gJ/50Qe3zf4Es=";
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 pythonNamespaces = [ "sphinxcontrib" ];
23
24 meta = with lib; {
25 description = "Provides a Sphinx domain for describing RESTful HTTP APIs";
26 homepage = "https://bitbucket.org/birkenfeld/sphinx-contrib";
27 license = licenses.bsd0;
28 };
29
30}