summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-paramiko_3.4.1.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2024-08-28 16:25:08 +0800
committerKhem Raj <raj.khem@gmail.com>2024-08-28 07:11:35 -0700
commit4a63e80c9949e9f3ef58c4bb4c1793af65524f7e (patch)
tree1f8c48757789637c317c2de6dd9a594767b4483d /meta-python/recipes-devtools/python/python3-paramiko_3.4.1.bb
parent093aa75416e83656b4e0bee1713470fd603820f1 (diff)
downloadmeta-openembedded-4a63e80c9949e9f3ef58c4bb4c1793af65524f7e.tar.gz
python3-paramiko: upgrade 3.4.0 -> 3.4.1
Changelog: ========== - Fix a 64-bit-ism in the test suite so the tests don't encounter a false negative on 32-bit systems. - Modify a test-harness skiptest check to work with newer versions of Cryptography. - Massage our import of the TripleDES cipher to support Cryptography >=43; this should prevent CryptographyDeprecationWarning from appearing upon import. 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.4.1.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-paramiko_3.4.1.bb20
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-paramiko_3.4.1.bb b/meta-python/recipes-devtools/python/python3-paramiko_3.4.1.bb
new file mode 100644
index 0000000000..498bb6d014
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-paramiko_3.4.1.bb
@@ -0,0 +1,20 @@
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] = "8b15302870af7f6652f2e038975c1d2973f06046cb5d7d65355668b3ecbece0c"
7
8PYPI_PACKAGE = "paramiko"
9
10inherit pypi setuptools3
11
12CLEANBROKEN = "1"
13
14RDEPENDS:${PN} += " \
15 python3-bcrypt \
16 python3-cryptography \
17 python3-logging \
18 python3-pynacl \
19 python3-unixadmin \
20"