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.

36 lines
1.1 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=python-websocket-client
  3. PKG_VERSION:=0.57.0
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=websocket_client
  6. PKG_HASH:=d735b91d6d1692a6a181f2a8c9e0238e5f6373356f561bb9dc4c7af36f452010
  7. PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
  8. PKG_LICENSE:=BSD-3-Clause
  9. PKG_LICENSE_FILES:=LICENSE
  10. include ../pypi.mk
  11. include $(INCLUDE_DIR)/package.mk
  12. include ../python3-package.mk
  13. define Package/python3-websocket-client
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. SUBMENU:=Python
  17. TITLE:=WebSocket client for Python. hybi13 is supported
  18. URL:=https://github.com/websocket-client/websocket-client
  19. DEPENDS:=+python3-light +python3-logging +python3-openssl +python3-six
  20. endef
  21. define Package/python3-websocket-client/description
  22. websocket-client module is WebSocket client for python. This provide the low
  23. level APIs for WebSocket. All APIs are the synchronous functions.
  24. websocket-client supports only hybi-13.
  25. endef
  26. $(eval $(call Py3Package,python3-websocket-client))
  27. $(eval $(call BuildPackage,python3-websocket-client))
  28. $(eval $(call BuildPackage,python3-websocket-client-src))