python-paramiko: Update to new version 1.12.0.

A small summary of the changes:

 - Add tentative support for ECDSA keys.
 - Add server-side support for the SSH protocol's 'env' command.

The full change log can be found at:

https://github.com/aszlig/paramiko/blob/master/NEWS

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-10-02 11:36:04 +02:00
parent 9ab2515314
commit a5f8f6ace7
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -3981,14 +3981,14 @@ pythonPackages = modules // import ./python-packages-generated.nix {
};
paramiko = buildPythonPackage rec {
name = "paramiko-1.11.0";
name = "paramiko-1.12.0";
src = fetchurl {
url = "http://pypi.python.org/packages/source/p/paramiko/${name}.tar.gz";
md5 = "a2c55dc04904bd08d984533703177084";
md5 = "4187f77b1a5a313c899993930e30c321";
};
propagatedBuildInputs = [ pycrypto ];
propagatedBuildInputs = [ pycrypto ecdsa ];
checkPhase = "python test.py";