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
2 changed files with 11 additions and 6 deletions
@@ -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 ];
@@ -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" ];