Problem installing extrenal dipendencies libraries

Hi, i have a problem during the installation of a library dependencies in home assistant for raspberry pi.
The library that i want to use is python-snap7 to communicate with a siemens PLC that is in my house. I have already tested the code in a raspbian environment and it works.

The python-snap7 library installed correctly putting it in the python package section of the configuration of the appdaemon addon, but for this library to work i have to install two other libraries.

From this manual https://python-snap7.readthedocs.io/en/latest/installation.html

If you are using Ubuntu you can use the Ubuntu packages from our [launchpad PPA](https://launchpad.net/~gijzelaar/+archive/snap7). To install:

$ sudo add-apt-repository ppa:gijzelaar/snap7 
$ sudo apt-get update 
$ sudo apt-get install libsnap71 libsnap7-dev

If you are not using Ubuntu or if you want to have more control you can download the latest source from [the sourceforce page](http://sourceforge.net/projects/snap7/files/) and do a manual compile. Download the file and run:

$ p7zip -d snap7-full-1.0.0.7z # requires the p7 program 
$ cd build/<platform> # where platform is unix or windows 
$ make -f <arch>.mk # where arch is your architecture, for example x86_64_linux

I already have tried to put in the config file in the system package section these libraries but it cannot find it.

How i can install these libraries to make python-snap7 works ?