ADSPipelineUtils' init.py module loads past.builtins, and this package uses imp to import packages, but imp has been removed from python3.12. The replacement for imp in python3.12 is importlib, but since this is being called by past.builtins this is not an option unless you fork the past module and make the required modifications.