biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-qthelp / default.nix
blob402432dd1e498e44c5d5c9402b6292a4bdfc667c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   flit-core,
7 }:
9 buildPythonPackage rec {
10   pname = "sphinxcontrib-qthelp";
11   version = "1.0.7";
12   pyproject = true;
14   disabled = pythonOlder "3.9";
16   src = fetchPypi {
17     pname = "sphinxcontrib_qthelp";
18     inherit version;
19     hash = "sha256-BT3tw4gjqApyCagIYLFrci6eAgnjL+qYyQ5OZiRYjtY=";
20   };
22   nativeBuildInputs = [ flit-core ];
24   # Check is disabled due to circular dependency of sphinx
25   dontCheckRuntimeDeps = true;
26   doCheck = false;
28   pythonNamespaces = [ "sphinxcontrib" ];
30   meta = with lib; {
31     description = "sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document";
32     homepage = "https://github.com/sphinx-doc/sphinxcontrib-qthelp";
33     license = licenses.bsd2;
34     maintainers = teams.sphinx.members;
35   };