2022-12-30T17:47:02 python310Packages.asyncssh 0 -> 1 2022-12-30T17:47:04 attrpath: python310Packages.asyncssh 2022-12-30T17:47:04 Checking auto update branch... 2022-12-30T17:47:09 [version] 2022-12-30T17:47:09 [version] skipping because derivation has updateScript 2022-12-30T17:47:09 [rustCrateVersion] 2022-12-30T17:47:09 [rustCrateVersion] No cargoSha256 found 2022-12-30T17:47:09 [golangModuleVersion] 2022-12-30T17:47:09 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-30T17:47:09 [updateScript] 2022-12-30T17:47:11 [updateScript] Success 2022-12-30T17:47:11 [updateScript] this derivation will be built: /nix/store/gq1jrb5llqa6sm9nq54vc0n2playla3a-packages.json.drv building '/nix/store/gq1jrb5llqa6sm9nq54vc0n2playla3a-packages.json.drv'... Going to be running update for following packages: - python3.10-asyncssh-2.12.0 Press Enter key to continue... Running update for: - python3.10-asyncssh-2.12.0: UPDATING ... - python3.10-asyncssh-2.12.0: DONE. Packages updated! 2022-12-30T17:47:11 2022-12-30T17:47:11 [quotedUrls] 2022-12-30T17:47:11 [quotedUrls] nothing found to replace 2022-12-30T17:47:11 Diff after rewrites: diff --git a/pkgs/development/python-modules/asyncssh/default.nix b/pkgs/development/python-modules/asyncssh/default.nix index 086bf0371ae..183cf918e70 100644 --- a/pkgs/development/python-modules/asyncssh/default.nix +++ b/pkgs/development/python-modules/asyncssh/default.nix @@ -20,14 +20,14 @@ buildPythonPackage rec { pname = "asyncssh"; - version = "2.12.0"; + version = "2.13.0"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - sha256 = "sha256-J0EBMixLlBgjru2OGrbnvlGRaGxtstK9Na/rowUF54A="; + sha256 = "sha256-vn4ctHIl3JiZ5WRy/cTarANYSmhDZ1MpwM5nF5yyDik="; }; propagatedBuildInputs = [ 2022-12-30T17:48:39 Old version 2.12.0" not present in master derivation file with contents: { stdenv , lib , bcrypt , buildPythonPackage , cryptography , fetchPypi , fido2 , gssapi , libnacl , libsodium , nettle , openssh , openssl , pyopenssl , pytestCheckHook , python-pkcs11 , pythonOlder , typing-extensions }: buildPythonPackage rec { pname = "asyncssh"; version = "2.13.0"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; hash = "sha256-vn4ctHIl3JiZ5WRy/cTarANYSmhDZ1MpwM5nF5yyDik="; }; propagatedBuildInputs = [ bcrypt cryptography fido2 gssapi libnacl libsodium nettle pyopenssl python-pkcs11 typing-extensions ]; checkInputs = [ openssh openssl pytestCheckHook ]; patches = [ # Reverts https://github.com/ronf/asyncssh/commit/4b3dec994b3aa821dba4db507030b569c3a32730 # # This changed the test to avoid setting the sticky bit # because that's not allowed for plain files in FreeBSD. # However that broke the test on NixOS, failing with # "Operation not permitted" ./fix-sftp-chmod-test-nixos.patch ]; disabledTestPaths = [ # Disables windows specific test (specifically the GSSAPI wrapper for Windows) "tests/sspi_stub.py" ]; disabledTests = [ # No PIN set "TestSKAuthCTAP2" # Requires network access "test_connect_timeout_exceeded" # Fails in the sandbox "test_forward_remote" ]; pythonImportsCheck = [ "asyncssh" ]; meta = with lib; { broken = stdenv.isDarwin; description = "Asynchronous SSHv2 Python client and server library"; homepage = "https://asyncssh.readthedocs.io/"; changelog = "https://github.com/ronf/asyncssh/blob/v${version}/docs/changes.rst"; license = licenses.epl20; maintainers = with maintainers; [ ]; }; }