summary refs log tree commit diff
path: root/pkgs/development/python-modules/asyncssh
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-09-16 04:48:14 -0400
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-09-16 04:48:14 -0400
commit710b3d678b17507c7482e3c30a74b980362a4fb1 (patch)
treedc667896a59632f1e3b15cfccfb865b5940681a8 /pkgs/development/python-modules/asyncssh
parent61b2e0cba8d1faacd5ea80c6a332c1840412be19 (diff)
downloadnixpkgs-710b3d678b17507c7482e3c30a74b980362a4fb1.tar
nixpkgs-710b3d678b17507c7482e3c30a74b980362a4fb1.tar.gz
nixpkgs-710b3d678b17507c7482e3c30a74b980362a4fb1.tar.bz2
nixpkgs-710b3d678b17507c7482e3c30a74b980362a4fb1.tar.lz
nixpkgs-710b3d678b17507c7482e3c30a74b980362a4fb1.tar.xz
nixpkgs-710b3d678b17507c7482e3c30a74b980362a4fb1.tar.zst
nixpkgs-710b3d678b17507c7482e3c30a74b980362a4fb1.zip
python.pkgs.asyncssh: 1.13.3 -> 1.14.0
Diffstat (limited to 'pkgs/development/python-modules/asyncssh')
-rw-r--r--pkgs/development/python-modules/asyncssh/default.nix15
1 files changed, 9 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/asyncssh/default.nix b/pkgs/development/python-modules/asyncssh/default.nix
index 1ac393ff2d7..82723163a5e 100644
--- a/pkgs/development/python-modules/asyncssh/default.nix
+++ b/pkgs/development/python-modules/asyncssh/default.nix
@@ -1,18 +1,19 @@
 { stdenv, buildPythonPackage, fetchPypi, pythonOlder
 , cryptography
-, bcrypt, gssapi, libnacl, libsodium, nettle, pyopenssl }:
+, bcrypt, gssapi, libnacl, libsodium, nettle, pyopenssl
+, openssl }:
 
 buildPythonPackage rec {
   pname = "asyncssh";
-  version = "1.13.3";
+  version = "1.14.0";
   disabled = pythonOlder "3.4";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "eb5b190badc5cd2a506a1b6ced3e92f948166974eef7d1abab61acc67aa379e6";
+    sha256 = "0f1i5a760a3jylkj00bxkshnylzyhyqz50v8mb8s9ygllpzja058";
   };
 
-  propagatedBuildInputs = [ 
+  propagatedBuildInputs = [
     bcrypt
     cryptography
     gssapi
@@ -22,6 +23,8 @@ buildPythonPackage rec {
     pyopenssl
   ];
 
+  checkInputs = [ openssl ];
+
   # Disables windows specific test (specifically the GSSAPI wrapper for Windows)
   postPatch = ''
     rm ./tests/sspi_stub.py
@@ -29,8 +32,8 @@ buildPythonPackage rec {
 
   meta = with stdenv.lib; {
     description = "Provides an asynchronous client and server implementation of the SSHv2 protocol on top of the Python asyncio framework";
-    homepage = https://pypi.python.org/pypi/asyncssh;
-    license = licenses.epl10;
+    homepage    = https://pypi.python.org/pypi/asyncssh;
+    license     = licenses.epl20;
     maintainers = with maintainers; [ worldofpeace ];
   };
 }