python312Packages.asyncssh: 2.15.0 -> 2.17.0 (#339462)
This commit is contained in:
@@ -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" ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user