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 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}