codechecker: add distutils to propagatedBuildInputs

Python 3.12 removed the `distutils` module, which causes
errors when running CodeChecker sub-commands.
This patch adds `distutils` to ensure compatibility with Python 3.12.

Related: [Ericsson/codechecker#4350](https://github.com/Ericsson/codechecker/issues/4350)
This commit is contained in:
Thierry Delafontaine
2025-04-05 08:49:50 +02:00
parent 42a1c966be
commit 30c4b37147
+1
View File
@@ -68,6 +68,7 @@ python3Packages.buildPythonApplication rec {
];
propagatedBuildInputs = with python3Packages; [
distutils # required in python312 to call subcommands (see https://github.com/Ericsson/codechecker/issues/4350)
lxml
sqlalchemy
alembic