Hello,

I have a pipfile like this.
I would like to install python-apt library but not from pypi but from the system.
Is-it possible?
This python library is no longer supported on pypi but is supported in the package distribution.

[[source]]                                                                                          
name = "pypi"                                                                                      
url = "https://pypi.org/simple"                                                                    
verify_ssl = true                                                                                  
                                                                                                   
[dev-packages]                                                                                      
                                                                                                   
[packages]                                                                                          
ansible = "==2.8.4"                                                                                
ansible-lint = "*"                                                                                  
molecule = "*"                                                                                      
docker-py = "*"                                                                                    
                                                                                                   
[requires]                                                                                          
python_version = "3"