I'm building my first debian package (django), which needs some dependencies, so I was wondering if it's possible to install a specific package version with apt-get.
For example instead of
pip install gunicorn==19.3.0
apt-get install gunicorn==19.3.0
(which obviously doesn't work, only apt-get install gunicorn works, however then it will install the latest version)
Ultimately, this is supposed into the Depends section of the control file.
Any ideas?