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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user