python3.pkgs.breathe: Add missing dependency after update

collected 3 items / 1 error
==================================== ERRORS ====================================
___________________ ERROR collecting tests/test_renderer.py ____________________
ImportError while importing test module '/build/source/tests/test_renderer.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/nix/store/lpi16513bai8kg2bd841745vzk72475x-python3-3.11.9/lib/python3.11/importlib/__init__.py:126: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
tests/test_renderer.py:18: in <module>
from sphinx.testing.fixtures import (
/nix/store/011i5by1fafwmksijc3xmpvp6ik66w07-python3.11-sphinx-7.3.7/lib/python3.11/site-packages/sphinx/testing/fixtures.py:14: in <module>
from sphinx.testing.util import SphinxTestApp, SphinxTestAppWrapperForSkipBuilding
/nix/store/011i5by1fafwmksijc3xmpvp6ik66w07-python3.11-sphinx-7.3.7/lib/python3.11/site-packages/sphinx/testing/util.py:14: in <module>
from defusedxml.ElementTree import parse as xml_parse
E ModuleNotFoundError: No module named 'defusedxml'
=========================== short test summary info ============================
ERROR tests/test_renderer.py
!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!
=============================== 1 error in 2.84s ===============================

+5
+5
pkgs/development/python-modules/breathe/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , defusedxml 3 4 , docutils 4 5 , fetchFromGitHub 5 6 , fetchpatch ··· 38 39 39 40 nativeCheckInputs = [ 40 41 pytestCheckHook 42 + ]; 43 + 44 + checkInputs = [ 45 + defusedxml 41 46 ]; 42 47 43 48 pythonImportsCheck = [