Merge pull request #46732 from worldofpeace/asyncssh/1.14.0

python.pkgs.asyncssh: 1.13.3 -> 1.14.0

authored by

Jörg Thalheim and committed by
GitHub
f03e9545 51a6c883

+9 -6
+9 -6
pkgs/development/python-modules/asyncssh/default.nix
··· 1 1 { stdenv, buildPythonPackage, fetchPypi, pythonOlder 2 2 , cryptography 3 - , bcrypt, gssapi, libnacl, libsodium, nettle, pyopenssl }: 3 + , bcrypt, gssapi, libnacl, libsodium, nettle, pyopenssl 4 + , openssl }: 4 5 5 6 buildPythonPackage rec { 6 7 pname = "asyncssh"; 7 - version = "1.13.3"; 8 + version = "1.14.0"; 8 9 disabled = pythonOlder "3.4"; 9 10 10 11 src = fetchPypi { 11 12 inherit pname version; 12 - sha256 = "eb5b190badc5cd2a506a1b6ced3e92f948166974eef7d1abab61acc67aa379e6"; 13 + sha256 = "0f1i5a760a3jylkj00bxkshnylzyhyqz50v8mb8s9ygllpzja058"; 13 14 }; 14 15 15 - propagatedBuildInputs = [ 16 + propagatedBuildInputs = [ 16 17 bcrypt 17 18 cryptography 18 19 gssapi ··· 22 23 pyopenssl 23 24 ]; 24 25 26 + checkInputs = [ openssl ]; 27 + 25 28 # Disables windows specific test (specifically the GSSAPI wrapper for Windows) 26 29 postPatch = '' 27 30 rm ./tests/sspi_stub.py ··· 29 32 30 33 meta = with stdenv.lib; { 31 34 description = "Provides an asynchronous client and server implementation of the SSHv2 protocol on top of the Python asyncio framework"; 32 - homepage = https://pypi.python.org/pypi/asyncssh; 33 - license = licenses.epl10; 35 + homepage = https://pypi.python.org/pypi/asyncssh; 36 + license = licenses.epl20; 34 37 maintainers = with maintainers; [ worldofpeace ]; 35 38 }; 36 39 }