I am trying to deploy a python project I have created using Streamlit, I have several packages that only require a pip install including pdfkit. All of my packages are working correctly and I currently have them all in a requirements.txt file. However, pdfkit requires a brew install of wkhtmltopdf in order to run.
I'm not exactly sure how to get it to work on streamlit since this is my first project I'm deploying with it, is there any way I can include the wkhtmltopdf install in the requirements.txt or in another file or do I have to make a buildpack (I am not exactly sure if this will even work with streamlit)