I'm trying to import a private package in PyFlink.
I have an UDF that needs to call a function in a private library (not available through pip install because the repo is private).
Therefore I can't use something like this:
table_env.set_python_requirements(requirements_file_path="/path/to/requirements.txt")
How to import this private package to access it in my PyFlink UDF function ?