2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2019-10-22 00:34:32 +02:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-15 15:45:41 -07:00
|
|
|
, isPy27
|
2019-10-22 00:34:32 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-htmlhelp";
|
2021-08-26 21:38:09 +02:00
|
|
|
version = "2.0.0";
|
2020-08-15 15:45:41 -07:00
|
|
|
disabled = isPy27;
|
2019-10-22 00:34:32 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-08-26 21:38:09 +02:00
|
|
|
sha256 = "f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2";
|
2019-10-22 00:34:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# Check is disabled due to circular dependency of sphinx
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2022-01-25 15:37:57 +01:00
|
|
|
description = "Sphinx extension which renders HTML help files";
|
2022-01-21 00:47:43 +01:00
|
|
|
homepage = "https://github.com/sphinx-doc/sphinxcontrib-htmlhelp";
|
2019-10-22 00:34:32 +02:00
|
|
|
license = licenses.bsd0;
|
2022-01-21 00:47:43 +01:00
|
|
|
maintainers = teams.sphinx.members;
|
2019-10-22 00:34:32 +02:00
|
|
|
};
|
|
|
|
}
|