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