about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2016-08-09 17:32:28 +0200
committerLancelot SIX <lsix@lancelotsix.com>2016-08-09 17:33:10 +0200
commit5d7777a288158f59e791e271b51ec4fe5793bf91 (patch)
treee6ac2c690ec1ce47acaff762d96e0b4f53303d03
parent909eaf8a4f320865f000f0ad9cfc72019ee16c3f (diff)
downloadnixlib-5d7777a288158f59e791e271b51ec4fe5793bf91.tar
nixlib-5d7777a288158f59e791e271b51ec4fe5793bf91.tar.gz
nixlib-5d7777a288158f59e791e271b51ec4fe5793bf91.tar.bz2
nixlib-5d7777a288158f59e791e271b51ec4fe5793bf91.tar.lz
nixlib-5d7777a288158f59e791e271b51ec4fe5793bf91.tar.xz
nixlib-5d7777a288158f59e791e271b51ec4fe5793bf91.tar.zst
nixlib-5d7777a288158f59e791e271b51ec4fe5793bf91.zip
pythonPackages.paramiko: 1.15.1 -> 2.0.2
-rw-r--r--pkgs/top-level/python-packages.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 2c5e06957882..371202f0e3a8 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -16524,14 +16524,15 @@ in modules // {
   };
 
   paramiko = buildPythonPackage rec {
-    name = "paramiko-1.15.1";
+    name = "paramiko-${version}";
+    version = "2.0.2";
 
     src = pkgs.fetchurl {
       url = "mirror://pypi/p/paramiko/${name}.tar.gz";
-      sha256 = "6ed97e2281bb48728692cdc621f6b86a65fdc1d46b178ce250cfec10b977a04c";
+      sha256 = "1p21s7psqj18k9a97nq26yas058i5ivzk7pi7y98l1rbl87zj6s1";
     };
 
-    propagatedBuildInputs = with self; [ pycrypto ecdsa ];
+    propagatedBuildInputs = with self; [ cryptography cryptography_vectors ];
 
     # https://github.com/paramiko/paramiko/issues/449
     doCheck = !(isPyPy || isPy33);