Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-qthelp / default.nix
blob607060e2931d0caeebeaa9c30029459709a7a07a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , flit-core
6 }:
8 buildPythonPackage rec {
9   pname = "sphinxcontrib-qthelp";
10   version = "1.0.7";
11   pyproject = true;
13   disabled = pythonOlder "3.9";
15   src = fetchPypi {
16     pname = "sphinxcontrib_qthelp";
17     inherit version;
18     hash = "sha256-BT3tw4gjqApyCagIYLFrci6eAgnjL+qYyQ5OZiRYjtY=";
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 = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document.";
33     homepage = "https://github.com/sphinx-doc/sphinxcontrib-qthelp";
34     license = licenses.bsd2;
35     maintainers = teams.sphinx.members;
36   };