python312Packages.asyncssh: 2.15.0 -> 2.17.0 (#339462)

This commit is contained in:
Nick Cao 2024-09-05 16:41:32 -04:00 committed by GitHub
commit df2a33b834
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 6 deletions

View File

@ -21,14 +21,14 @@
buildPythonPackage rec {
pname = "asyncssh";
version = "2.15.0";
version = "2.17.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-ChOkOBb0bPCEZX+wVZaCO5PVtI5173djyKdW7BIXg3o=";
hash = "sha256-OxWcEFqjiMHiJFxPr0g/VArajK2ZQCKBEZEAFm5e2zw=";
};
build-system = [ setuptools ];

View File

@ -54,10 +54,15 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals stdenv.isDarwin [
# test fails with sandbox enabled
"test_checksum"
];
disabledTests =
[
# Test requires network access
"test_config_expansions"
]
++ lib.optionals stdenv.isDarwin [
# Test fails with sandbox enabled
"test_checksum"
];
pythonImportsCheck = [ "sshfs" ];