Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-httpdomain / default.nix
blob8be6779391a36c9fbdb189a60fa479c85f5a2a70
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , sphinx
5 }:
7 buildPythonPackage rec {
8   pname = "sphinxcontrib-httpdomain";
9   version = "1.8.1";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-bC3+bKKC119m3zM4absM5zMcAbR122gJ/50Qe3zf4Es=";
15   };
17   propagatedBuildInputs = [ sphinx ];
19   # Check is disabled due to this issue:
20   # https://bitbucket.org/pypa/setuptools/issue/137/typeerror-unorderable-types-str-nonetype
21   doCheck = false;
23   pythonNamespaces = [ "sphinxcontrib" ];
25   meta = with lib; {
26     description = "Provides a Sphinx domain for describing RESTful HTTP APIs";
27     homepage = "https://bitbucket.org/birkenfeld/sphinx-contrib";
28     license = licenses.bsd0;
29   };