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:
parent
58fdf34296
commit
4e38df5c3c
@ -4001,21 +4001,16 @@ pythonPackages = modules // import ./python-packages-generated.nix {
|
|||||||
checkPhase = "python test.py";
|
checkPhase = "python test.py";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://www.lag.net/paramiko/";
|
homepage = "https://github.com/paramiko/paramiko/";
|
||||||
description = "SSH2 protocol for python";
|
description = "Native Python SSHv2 protocol library";
|
||||||
license = "LGPL";
|
license = stdenv.lib.licenses.lgpl21Plus;
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
paramiko is a module for python 2.2 (or higher) that implements the
|
This is a library for making SSH2 connections (client or server).
|
||||||
SSH2 protocol for secure (encrypted and authenticated) connections to
|
Emphasis is on using SSH2 as an alternative to SSL for making secure
|
||||||
remote machines. unlike SSL (aka TLS), SSH2 protocol does not require
|
connections between python scripts. All major ciphers and hash methods
|
||||||
heirarchical certificates signed by a powerful central authority. you
|
are supported. SFTP client and server mode are both supported too.
|
||||||
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). '';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user