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.

38 lines
946 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=botocore
  3. PKG_VERSION:=1.12.66
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=$(PKG_NAME)
  6. PKG_HASH:=25c39ecc71356287cf79d66981ec77deca374e28043b19b2f818d48aa34272a1
  7. PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
  8. PKG_LICENSE:=MIT
  9. include ../pypi.mk
  10. include $(INCLUDE_DIR)/package.mk
  11. include ../python3-package.mk
  12. define Package/python3-botocore
  13. SUBMENU:=Python
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. TITLE:=botocore
  17. URL:=https://github.com/boto/botocore
  18. DEPENDS:=+python3 \
  19. +python3-urllib3 \
  20. +python3-docutils \
  21. +python3-dateutil \
  22. +python3-jmespath \
  23. +python3-requests
  24. endef
  25. define Package/python3-botocore/description
  26. A low-level interface to a growing number of Amazon Web Services.
  27. The botocore package is the foundation for the AWS CLI as well as boto3.
  28. endef
  29. $(eval $(call Py3Package,python3-botocore))
  30. $(eval $(call BuildPackage,python3-botocore))
  31. $(eval $(call BuildPackage,python3-botocore-src))