blob: 7c381749f25f2eda8d8f37b1ee2c0e8ccfa406c4 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001include $(TOPDIR)/rules.mk
2
3PKG_NAME:=python-paramiko
4PKG_VERSION:=2.12.0
5PKG_RELEASE:=2
6
7PYPI_NAME:=paramiko
8PKG_HASH:=376885c05c5d6aa6e1f4608aac2a6b5b0548b1add40274477324605903d9cd49
9
10PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
11PKG_LICENSE:=LGPL-2.1-or-later
12PKG_LICENSE_FILES:=LICENSE
13PKG_CPE_ID:=cpe:/a:paramiko:paramiko
14
15include ../pypi.mk
16include $(INCLUDE_DIR)/package.mk
17include ../python3-package.mk
18
19define Package/python3-paramiko
20 SECTION:=lang
21 CATEGORY:=Languages
22 SUBMENU:=Python
23 TITLE:=SSH2 protocol library
24 URL:=https://github.com/paramiko/paramiko/
25 DEPENDS:=+python3-light +python3-logging +python3-bcrypt \
26 +python3-cryptography +python3-openssl +python3-pynacl
27endef
28
29define Package/python3-paramiko/description
30 Paramiko is a Python (2.7, 3.4+) implementation of the SSHv2 protocol,
31 providing both client and server functionality. While it leverages a Python
32 C extension for low level cryptography (Cryptography), Paramiko itself is a
33 pure Python interface around SSH networking concepts.
34endef
35
36$(eval $(call Py3Package,python3-paramiko))
37$(eval $(call BuildPackage,python3-paramiko))
38$(eval $(call BuildPackage,python3-paramiko-src))