2019-10-21 22:34:32 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-15 22:45:41 +00:00
|
|
|
, isPy27
|
2019-10-21 22:34:32 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-htmlhelp";
|
2020-05-09 10:02:01 +00:00
|
|
|
version = "1.0.3";
|
2020-08-15 22:45:41 +00:00
|
|
|
disabled = isPy27;
|
2019-10-21 22:34:32 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 10:02:01 +00:00
|
|
|
sha256 = "e8f5bb7e31b2dbb25b9cc435c8ab7a79787ebf7f906155729338f3156d93659b";
|
2019-10-21 22:34:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
# Check is disabled due to circular dependency of sphinx
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "sphinxcontrib-htmlhelp is a sphinx extension which ...";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://sphinx-doc.org/";
|
2019-10-21 22:34:32 +00:00
|
|
|
license = licenses.bsd0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|