mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 21:33:03 +03:00
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:
parent
9ab2515314
commit
a5f8f6ace7
@ -3981,14 +3981,14 @@ pythonPackages = modules // import ./python-packages-generated.nix {
|
|||||||
};
|
};
|
||||||
|
|
||||||
paramiko = buildPythonPackage rec {
|
paramiko = buildPythonPackage rec {
|
||||||
name = "paramiko-1.11.0";
|
name = "paramiko-1.12.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://pypi.python.org/packages/source/p/paramiko/${name}.tar.gz";
|
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";
|
checkPhase = "python test.py";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user