2021-02-05 17:12:51 +00:00
|
|
|
{ lib
|
2020-04-24 23:36:52 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-20 17:08:02 +00:00
|
|
|
, isPy27
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-htmlhelp";
|
2021-09-18 10:52:07 +00:00
|
|
|
version = "2.0.0";
|
2020-08-20 17:08:02 +00:00
|
|
|
disabled = isPy27;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-09-18 10:52:07 +00:00
|
|
|
sha256 = "f5f8bb2d0d629f398bf47d0d69c07bc13b65f75a81ad9e2f71a63d4b7a2f6db2";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Check is disabled due to circular dependency of sphinx
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2022-01-26 04:04:25 +00:00
|
|
|
description = "Sphinx extension which renders HTML help files";
|
2022-02-10 20:34:41 +00:00
|
|
|
homepage = "https://github.com/sphinx-doc/sphinxcontrib-htmlhelp";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.bsd0;
|
2022-02-10 20:34:41 +00:00
|
|
|
maintainers = teams.sphinx.members;
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|