2019-10-21 23:28:54 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2020-08-15 23:44:41 +01:00
|
|
|
, isPy27
|
2019-10-21 23:28:54 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-applehelp";
|
2020-05-09 11:02:00 +01:00
|
|
|
version = "1.0.2";
|
2020-08-15 23:44:41 +01:00
|
|
|
disabled = isPy27;
|
2019-10-21 23:28:54 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 11:02:00 +01:00
|
|
|
sha256 = "a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58";
|
2019-10-21 23:28:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
# Check is disabled due to circular dependency of sphinx
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://sphinx-doc.org/";
|
2019-10-21 23:28:54 +01:00
|
|
|
license = licenses.bsd0;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|