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