2019-10-21 15:34:32 -07:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-15 15:45:41 -07:00
|
|
|
, isPy27
|
2019-10-21 15:34:32 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-htmlhelp";
|
2020-05-09 03:02:01 -07:00
|
|
|
version = "1.0.3";
|
2020-08-15 15:45:41 -07:00
|
|
|
disabled = isPy27;
|
2019-10-21 15:34:32 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 03:02:01 -07:00
|
|
|
sha256 = "e8f5bb7e31b2dbb25b9cc435c8ab7a79787ebf7f906155729338f3156d93659b";
|
2019-10-21 15:34:32 -07: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-03-31 18:11:51 -07:00
|
|
|
homepage = "http://sphinx-doc.org/";
|
2019-10-21 15:34:32 -07:00
|
|
|
license = licenses.bsd0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|