Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-htmlhelp / default.nix
blobc49e3c49da31bd63ebe20ce76039f12353439dec
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , flit-core
6 }:
8 buildPythonPackage rec {
9   pname = "sphinxcontrib-htmlhelp";
10   version = "2.0.5";
11   pyproject = true;
13   disabled = pythonOlder "3.9";
15   src = fetchPypi {
16     pname = "sphinxcontrib_htmlhelp";
17     inherit version;
18     hash = "sha256-Dch2N9XeU91e7DpqAXU7HM+ZSUvXVqr+zXS0+p5ykBU=";
19   };
21   nativeBuildInputs = [
22     flit-core
23   ];
25   # Check is disabled due to circular dependency of sphinx
26   dontCheckRuntimeDeps = true;
27   doCheck = false;
29   pythonNamespaces = [ "sphinxcontrib" ];
31   meta = with lib; {
32     description = "Sphinx extension which renders HTML help files";
33     homepage = "https://github.com/sphinx-doc/sphinxcontrib-htmlhelp";
34     license = licenses.bsd2;
35     maintainers = teams.sphinx.members;
36   };