2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-27 15:27:21 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, sphinx
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-httpdomain";
|
2018-11-04 10:35:17 +00:00
|
|
|
version = "1.7.0";
|
2018-10-27 15:27:21 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-11-04 10:35:17 +00:00
|
|
|
sha256 = "ac40b4fba58c76b073b03931c7b8ead611066a6aebccafb34dc19694f4eb6335";
|
2018-10-27 15:27:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ sphinx ];
|
|
|
|
|
|
|
|
# Check is disabled due to this issue:
|
|
|
|
# https://bitbucket.org/pypa/setuptools/issue/137/typeerror-unorderable-types-str-nonetype
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-27 15:27:21 +01:00
|
|
|
description = "Provides a Sphinx domain for describing RESTful HTTP APIs";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://bitbucket.org/birkenfeld/sphinx-contrib";
|
2018-10-27 15:27:21 +01:00
|
|
|
license = licenses.bsd0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|