python-paramiko: Update and clean up meta.

The upstream package has a new maintainer (Jeff Forcier) and thus the
main homepage for the project is the GitHub page.

Also the long description contains quite a lot of unrelevant
information, so I've used the one from PyPI, which is a lot smaller and
just contains what the library supports and does.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-10-02 11:57:49 +02:00
parent 58fdf34296
commit 4e38df5c3c
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -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.
'';
};
};