depot/third_party/nixpkgs/pkgs/development/python-modules/sphinxcontrib_httpdomain/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

28 lines
677 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, sphinx
}:
buildPythonPackage rec {
pname = "sphinxcontrib-httpdomain";
version = "1.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "ac40b4fba58c76b073b03931c7b8ead611066a6aebccafb34dc19694f4eb6335";
};
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 stdenv.lib; {
description = "Provides a Sphinx domain for describing RESTful HTTP APIs";
homepage = "https://bitbucket.org/birkenfeld/sphinx-contrib";
license = licenses.bsd0;
};
}