How did I upgrade `python-paramiko` from 2.4.2 to 2.6.0 in Debian 10?

I needed it to solved the issue «/usr/lib/python2.7/dist-packages/paramiko/ecdsakey.py:164: CryptographyDeprecationWarning: Support for unsafe construction of public numbers from encoded data will be removed in a future version» with Backupninja / Duplicity.

78967638-da50f800-7b24-11ea-8113-ffacae682ab8

Step 1

I have added buster-backports to /etc/apt/sources.list:

deb http://ftp.debian.org/debian buster-backports main

backports.debian.org/Instructions/#index2h2

Step 2

aptitude -t buster-backports install "python-paramiko"

backports.debian.org/Instructions/#index3h2

01