python311Packages.sphinxcontrib-applehelp: 1.0.2 -> 1.0.7

This commit is contained in:
natsukium
2023-10-26 23:05:14 +09:00
parent df59f94119
commit 90d64bab00
@@ -1,19 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, pythonOlder
, flit-core
}:
buildPythonPackage rec {
pname = "sphinxcontrib-applehelp";
version = "1.0.2";
disabled = isPy27;
version = "1.0.7";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
sha256 = "a072735ec80e7675e3f432fcae8610ecf509c5f1869d17e2eecff44389cdbc58";
pname = "sphinxcontrib_applehelp";
inherit version;
hash = "sha256-Of3I12LTOwGn2PAmo7fXFWPqO3J4fV8ArYRlvZ1t+/o=";
};
nativeBuildInputs = [
flit-core
];
# Check is disabled due to circular dependency of sphinx
doCheck = false;
@@ -22,7 +30,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books";
homepage = "https://github.com/sphinx-doc/sphinxcontrib-applehelp";
license = licenses.bsd0;
license = licenses.bsd2;
maintainers = teams.sphinx.members;
};
}