python312Packages.breathe: modernize

This commit is contained in:
Robert Schütz 2024-08-04 03:23:03 -07:00
parent 54770984fc
commit 5dee280b3d

View File

@ -2,54 +2,57 @@
lib,
buildPythonPackage,
defusedxml,
docutils,
fetchFromGitHub,
fetchpatch,
pytestCheckHook,
pythonOlder,
setuptools,
sphinx,
}:
buildPythonPackage rec {
pname = "breathe";
version = "4.35.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "michaeljones";
repo = pname;
owner = "breathe-doc";
repo = "breathe";
rev = "refs/tags/v${version}";
hash = "sha256-LJXvtScyWRL8zfj877bJ4xuIbLV9IN3Sn9KPUTLMjMI=";
};
patches = [
# sphinx 7.2 support https://github.com/breathe-doc/breathe/pull/964
(fetchpatch {
# sphinx 7.2 support https://github.com/breathe-doc/breathe/pull/956
name = "breathe-sphinx7.2-support.patch";
url = "https://github.com/breathe-doc/breathe/commit/46abd77157a2a57e81586e4f8765ae8f1a09d167.patch";
hash = "sha256-zGFO/Ndk/9Yv2dbo8fpEoB/vchZP5vRceoC1E3sUny8=";
url = "https://github.com/breathe-doc/breathe/commit/caa8dc45222b35d360c24bf36835a7d8e6d86df2.patch";
hash = "sha256-wWe4x4WwZTrDhNZAF7mhfHHNEjd+Kp4YXghL+DPa10w=";
})
# sphinx 7.2 support https://github.com/breathe-doc/breathe/pull/976
(fetchpatch {
url = "https://github.com/breathe-doc/breathe/commit/09c856bf72de41e82582f31855e916295ba6d382.patch";
hash = "sha256-vU3DUrj4Jj4AUolFFtWmaLMf9RG7TmKqJe5sCwwRjPI=";
})
];
propagatedBuildInputs = [
docutils
sphinx
build-system = [ setuptools ];
dependencies = [ sphinx ];
nativeCheckInputs = [
defusedxml
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ defusedxml ];
pythonImportsCheck = [ "breathe" ];
meta = with lib; {
meta = {
description = "Sphinx Doxygen renderer";
mainProgram = "breathe-apidoc";
homepage = "https://github.com/michaeljones/breathe";
license = licenses.bsd3;
maintainers = [ ];
inherit (sphinx.meta) platforms;
homepage = "https://github.com/breathe-doc/breathe";
license = lib.licenses.bsd3;
maintainers = lib.teams.sphinx.members;
};
}