2024-05-22 16:01:06 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchPypi,
|
|
|
|
pythonOlder,
|
|
|
|
flit-core,
|
2019-10-22 00:31:20 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-devhelp";
|
2024-03-08 02:42:38 +01:00
|
|
|
version = "1.0.6";
|
2023-10-06 14:13:27 +09:00
|
|
|
pyproject = true;
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.9";
|
2019-10-22 00:31:20 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2023-10-06 14:13:27 +09:00
|
|
|
pname = "sphinxcontrib_devhelp";
|
|
|
|
inherit version;
|
2024-03-08 02:42:38 +01:00
|
|
|
hash = "sha256-mJP9P5BQa8S5e9uXfOuPvYI5ifQxayjDhB7BKFRDctM=";
|
2019-10-22 00:31:20 +02:00
|
|
|
};
|
|
|
|
|
2024-05-22 16:01:06 +02:00
|
|
|
nativeBuildInputs = [ flit-core ];
|
2023-10-06 14:13:27 +09:00
|
|
|
|
2019-10-22 00:31:20 +02:00
|
|
|
# Check is disabled due to circular dependency of sphinx
|
2023-11-27 23:59:50 +01:00
|
|
|
dontCheckRuntimeDeps = true;
|
2019-10-22 00:31:20 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2023-10-06 13:00:07 +09:00
|
|
|
pythonNamespaces = [ "sphinxcontrib" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2024-06-07 09:40:42 +02:00
|
|
|
description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document";
|
2022-01-21 00:47:35 +01:00
|
|
|
homepage = "https://github.com/sphinx-doc/sphinxcontrib-devhelp";
|
2023-10-06 14:13:27 +09:00
|
|
|
license = licenses.bsd2;
|
2022-01-21 00:47:35 +01:00
|
|
|
maintainers = teams.sphinx.members;
|
2019-10-22 00:31:20 +02:00
|
|
|
};
|
|
|
|
}
|