python313Packages.asyncssh: 2.21.0 -> 2.21.1

Changelog: https://github.com/ronf/asyncssh/blob/v2.21.1/docs/changes.rst

Changed files
+6 -3
pkgs
development
python-modules
asyncssh
+6 -3
pkgs/development/python-modules/asyncssh/default.nix
···
buildPythonPackage rec {
pname = "asyncssh";
-
version = "2.21.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
-
hash = "sha256-RQ/hO7jYao9OfXtfr853kRgco+fJLhW7xF37JYZuSLM=";
};
build-system = [ setuptools ];
···
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 = [ ];
};
}
···
buildPythonPackage rec {
pname = "asyncssh";
+
version = "2.21.1";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
+
hash = "sha256-mUOAKVXiExU2wrHnGqzGj1aXOjmZN+0LclCG10YcmQw=";
};
build-system = [ setuptools ];
···
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 = with licenses; [
+
epl20 # or
+
gpl2Plus
+
];
maintainers = [ ];
};
}