summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-paramiko_3.1.0.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2023-03-15 22:07:15 +0800
committerKhem Raj <raj.khem@gmail.com>2023-03-17 07:06:55 -0700
commit86c6ac03a508adde7775a04914336640e7a46764 (patch)
treec7fee695c747d5681cbba6785b7b402fbb191ee9 /meta-python/recipes-devtools/python/python3-paramiko_3.1.0.bb
parentb416f3454843f7555636bfb1a1b4f81f39b5e360 (diff)
downloadmeta-openembedded-86c6ac03a508adde7775a04914336640e7a46764.tar.gz
python3-paramiko: upgrade 3.0.0 -> 3.1.0
Changelog: =========== -[Feature] #2173: Accept single tabs as field separators (in addition to single spaces) in <paramiko.hostkeys.HostKeyEntry.from_line> for parity with OpenSSH’s KnownHosts parser. -[Feature] #2013: (solving #2009, plus others) Add an explicit channel_timeout keyword argument to paramiko.client.SSHClient.connect, allowing users to configure the previously-hardcoded default value of 3600 seconds. -[Support] #2178: Apply codespell to the codebase, which found a lot of very old minor spelling mistakes in docstrings. Also modernize many instances of *largs vs *args and **kwarg vs **kwargs. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-paramiko_3.1.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-paramiko_3.1.0.bb19
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-paramiko_3.1.0.bb b/meta-python/recipes-devtools/python/python3-paramiko_3.1.0.bb
new file mode 100644
index 0000000000..70cee849a6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-paramiko_3.1.0.bb
@@ -0,0 +1,19 @@
1DESCRIPTION = "The leading native Python SSHv2 protocol library."
2HOMEPAGE = "https://github.com/paramiko/paramiko/"
3LICENSE = "LGPL-2.1-only"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5"
5
6SRC_URI[sha256sum] = "6950faca6819acd3219d4ae694a23c7a87ee38d084f70c1724b0c0dbb8b75769"
7
8PYPI_PACKAGE = "paramiko"
9
10inherit pypi setuptools3
11
12CLEANBROKEN = "1"
13
14RDEPENDS:${PN} += "\
15 ${PYTHON_PN}-bcrypt \
16 ${PYTHON_PN}-cryptography \
17 ${PYTHON_PN}-pynacl \
18 ${PYTHON_PN}-unixadmin \
19"