python3.pkgs.asyncssh: 1.16.1 -> 1.17.0

https://github.com/ronf/asyncssh/blob/master/docs/changes.rst#release-1170-31-may-2019
This commit is contained in:
worldofpeace 2019-06-10 14:13:10 -04:00
parent 3fb275d166
commit 3df5b67ae4

View file

@ -5,12 +5,12 @@
buildPythonPackage rec {
pname = "asyncssh";
version = "1.16.1";
version = "1.17.0";
disabled = pythonOlder "3.4";
src = fetchPypi {
inherit pname version;
sha256 = "0qia1ay2dhwps5sfh0hif7mrv7yxvykxs9l7cmfp4m6hmqnn3r5r";
sha256 = "1qrpkdyl77956qg6g7g66bbd6bfvb2nwi2sjy3v3li8m3irx8d7d";
};
patches = [
@ -21,13 +21,6 @@ buildPythonPackage rec {
# However that broke the test on NixOS, failing with
# "Operation not permitted"
./fix-sftp-chmod-test-nixos.patch
# Restore libnacl support for curve25519/ed25519 as a fallback for PyCA
# Fixes https://github.com/ronf/asyncssh/issues/206 with older openssl
(fetchpatch {
url = "https://github.com/ronf/asyncssh/commit/1dee113bb3e4a6888de562b0413e9abd6a0f0f04.patch";
sha256 = "04bckdj7i6xk24lizkn3a8cj375pkz7yc57fc0vk222c6jzwzaml";
})
];
propagatedBuildInputs = [