diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3bf9e93e5739..dafa36a723b6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4001,21 +4001,16 @@ pythonPackages = modules // import ./python-packages-generated.nix { checkPhase = "python test.py"; meta = { - homepage = "http://www.lag.net/paramiko/"; - description = "SSH2 protocol for python"; - license = "LGPL"; + homepage = "https://github.com/paramiko/paramiko/"; + description = "Native Python SSHv2 protocol library"; + license = stdenv.lib.licenses.lgpl21Plus; longDescription = '' - paramiko is a module for python 2.2 (or higher) that implements the - SSH2 protocol for secure (encrypted and authenticated) connections to - remote machines. unlike SSL (aka TLS), SSH2 protocol does not require - heirarchical certificates signed by a powerful central authority. you - may know SSH2 as the protocol that replaced telnet and rsh for secure - access to remote shells, but the protocol also includes the ability - to open arbitrary channels to remote services across the encrypted - tunnel -- this is how sftp works, for example. it is written - entirely in python (no C or platform-dependent code) and is released - under the GNU LGPL (lesser GPL). ''; + This is a library for making SSH2 connections (client or server). + Emphasis is on using SSH2 as an alternative to SSL for making secure + connections between python scripts. All major ciphers and hash methods + are supported. SFTP client and server mode are both supported too. + ''; }; };