python3Packages.asyncssh: 2.22.0 -> 2.24.0

This commit is contained in:
K900
2026-07-05 11:23:09 +03:00
parent 30b3f88e8a
commit 0344b2eec2
@@ -6,6 +6,7 @@
fetchPypi,
fido2,
gssapi,
ifaddr,
libnacl,
libsodium,
nettle,
@@ -20,12 +21,12 @@
buildPythonPackage rec {
pname = "asyncssh";
version = "2.22.0";
version = "2.24.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-w85ysBvk+XtA5ihE3ThCJ+X/WkAaN5MAfEL4alyOtTc=";
hash = "sha256-QGTFkOWc4ujYKi9m018xINdlgotN9ePb+we0qMJGhsk=";
};
build-system = [ setuptools ];
@@ -41,6 +42,7 @@ buildPythonPackage rec {
optional-dependencies = {
bcrypt = [ bcrypt ];
fido2 = [ fido2 ];
ifaddr = [ ifaddr ];
gssapi = [ gssapi ];
libnacl = [ libnacl ];
pkcs11 = [ python-pkcs11 ];
@@ -78,8 +80,8 @@ buildPythonPackage rec {
"test_connect_timeout_exceeded"
# Fails in the sandbox
"test_forward_remote"
# (2.21.0) SFTP copy ends up with an empty file
"test_copy_max_requests"
# Seems weirdly filesystem specific
"test_put_name_too_long"
];
pythonImportsCheck = [ "asyncssh" ];