paramiko: Update to new upstream version 1.12.1.

This release contains only minor fixes, which are:

 * Fix AttributeError bugs in known_hosts file (re)loading.
 * Note ecdsa requirement in README.

Full changelog with credits and issue IDs can be found at:

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

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-01-29 09:05:22 +01:00
parent 795941261a
commit a2a44f92ae
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -4296,11 +4296,11 @@ pythonPackages = modules // import ./python-packages-generated.nix {
};
paramiko = buildPythonPackage rec {
name = "paramiko-1.12.0";
name = "paramiko-1.12.1";
src = fetchurl {
url = "http://pypi.python.org/packages/source/p/paramiko/${name}.tar.gz";
md5 = "4187f77b1a5a313c899993930e30c321";
md5 = "ae4544dc0a1419b141342af89fcf0dd9";
};
propagatedBuildInputs = [ pycrypto ecdsa ];