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