bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
36 lines
815 B
Nix
36 lines
815 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
flit-core,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-devhelp";
|
|
version = "1.0.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchPypi {
|
|
pname = "sphinxcontrib_devhelp";
|
|
inherit version;
|
|
hash = "sha256-mJP9P5BQa8S5e9uXfOuPvYI5ifQxayjDhB7BKFRDctM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ flit-core ];
|
|
|
|
# Check is disabled due to circular dependency of sphinx
|
|
dontCheckRuntimeDeps = true;
|
|
doCheck = false;
|
|
|
|
pythonNamespaces = [ "sphinxcontrib" ];
|
|
|
|
meta = with lib; {
|
|
description = "sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document";
|
|
homepage = "https://github.com/sphinx-doc/sphinxcontrib-devhelp";
|
|
license = licenses.bsd2;
|
|
maintainers = teams.sphinx.members;
|
|
};
|
|
}
|