01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
28 lines
654 B
Nix
28 lines
654 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, sphinx
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-httpdomain";
|
|
version = "1.8.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-bC3+bKKC119m3zM4absM5zMcAbR122gJ/50Qe3zf4Es=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ sphinx ];
|
|
|
|
# Check is disabled due to this issue:
|
|
# https://bitbucket.org/pypa/setuptools/issue/137/typeerror-unorderable-types-str-nonetype
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Provides a Sphinx domain for describing RESTful HTTP APIs";
|
|
homepage = "https://bitbucket.org/birkenfeld/sphinx-contrib";
|
|
license = licenses.bsd0;
|
|
};
|
|
|
|
}
|