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; {
|
2019-10-22 00:34:32 +02:00
|
|
|
description = "sphinxcontrib-htmlhelp is a sphinx extension which ...";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://sphinx-doc.org/";
|
2019-10-22 00:34:32 +02:00
|
|
|
license = licenses.bsd0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|