Merge pull request #158337 from fabaff/bump-asyncssh
python3Packages.asyncssh: 2.8.1 -> 2.9.0
This commit is contained in:
commit
b080a92b55
1 changed files with 15 additions and 11 deletions
|
@ -1,31 +1,32 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, cryptography
|
||||
, bcrypt
|
||||
, gssapi
|
||||
, buildPythonPackage
|
||||
, cryptography
|
||||
, fetchPypi
|
||||
, fido2
|
||||
, gssapi
|
||||
, libnacl
|
||||
, libsodium
|
||||
, nettle
|
||||
, python-pkcs11
|
||||
, pyopenssl
|
||||
, openssl
|
||||
, openssh
|
||||
, openssl
|
||||
, pyopenssl
|
||||
, pytestCheckHook
|
||||
, python-pkcs11
|
||||
, pythonOlder
|
||||
, typing-extensions
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "asyncssh";
|
||||
version = "2.8.1";
|
||||
version = "2.9.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0648eba58d72653755f28e26c9bd83147d9652c1f2f5e87fbf5a87d7f8fbf83a";
|
||||
sha256 = "sha256-PMM32AZhlGVFW/GH6KkeP1dUI3GBhOI4+a6MQcTzOvE=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -36,8 +37,9 @@ buildPythonPackage rec {
|
|||
libnacl
|
||||
libsodium
|
||||
nettle
|
||||
python-pkcs11
|
||||
pyopenssl
|
||||
python-pkcs11
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
|
@ -66,6 +68,8 @@ buildPythonPackage rec {
|
|||
"TestSKAuthCTAP2"
|
||||
# Requires network access
|
||||
"test_connect_timeout_exceeded"
|
||||
# Fails in the sandbox
|
||||
"test_forward_remote"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
|
|
Loading…
Reference in a new issue