You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB

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