From 5a0f0005e7960865798c8ab4b7831c767960af33 Mon Sep 17 00:00:00 2001 From: Andrew Dunham Date: Thu, 6 Feb 2020 23:24:27 -0800 Subject: [PATCH] python3Packages.asyncssh: fix build The test changed from `yield from` to `await`, which broke our patch. Fix our patch. Closes #79380 --- .../asyncssh/fix-sftp-chmod-test-nixos.patch | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/asyncssh/fix-sftp-chmod-test-nixos.patch b/pkgs/development/python-modules/asyncssh/fix-sftp-chmod-test-nixos.patch index 845139a4fecf..b53063313a47 100644 --- a/pkgs/development/python-modules/asyncssh/fix-sftp-chmod-test-nixos.patch +++ b/pkgs/development/python-modules/asyncssh/fix-sftp-chmod-test-nixos.patch @@ -1,14 +1,14 @@ diff --git a/tests/test_sftp.py b/tests/test_sftp.py -index db9cc88..234004b 100644 +index d94379f..4ee46a9 100644 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py -@@ -957,8 +957,8 @@ class _TestSFTP(_CheckSFTP): +@@ -955,8 +955,8 @@ class _TestSFTP(_CheckSFTP): try: self._create_file('file') -- yield from sftp.chmod('file', 0o4321) +- await sftp.chmod('file', 0o4321) - self.assertEqual(stat.S_IMODE(os.stat('file').st_mode), 0o4321) -+ yield from sftp.chmod('file', 0o1234) ++ await sftp.chmod('file', 0o1234) + self.assertEqual(stat.S_IMODE(os.stat('file').st_mode), 0o1234) finally: remove('file')