evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / sphinxcontrib-htmlhelp / default.nix
blob3279faae0128710ab4d3dfd8e7a4e26bd567e484
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   flit-core,
7 }:
9 buildPythonPackage rec {
10   pname = "sphinxcontrib-htmlhelp";
11   version = "2.1.0";
12   pyproject = true;
14   disabled = pythonOlder "3.9";
16   src = fetchPypi {
17     pname = "sphinxcontrib_htmlhelp";
18     inherit version;
19     hash = "sha256-yeKRas6KrWTME6DSM+4iMX8rkCW5zzKVJJ+phcxwguk=";
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 = "Sphinx extension which renders HTML help files";
32     homepage = "https://github.com/sphinx-doc/sphinxcontrib-htmlhelp";
33     license = licenses.bsd2;
34     maintainers = teams.sphinx.members;
35   };