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
933 B

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=python-influxdb
  6. PKG_VERSION:=5.2.2
  7. PKG_RELEASE:=1
  8. PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz>
  9. PYPI_NAME:=influxdb
  10. PKG_HASH:=afeff28953a91b4ea1aebf9b5b8258a4488d0e49e2471db15ea43fd2c8533143
  11. PKG_LICENSE:=MIT
  12. include ../pypi.mk
  13. include $(INCLUDE_DIR)/package.mk
  14. include ../python3-package.mk
  15. define Package/python3-influxdb
  16. SECTION:=lang
  17. CATEGORY:=Languages
  18. SUBMENU:=Python
  19. URL:=https://github.com/influxdb/influxdb-python
  20. TITLE:=python3-influxdb
  21. DEPENDS:=+python3-requests +python3-pytz +python3-six +python3-dateutil
  22. VARIANT:=python3
  23. endef
  24. define Package/python3-influxdb/description
  25. Python client for InfluxDB
  26. endef
  27. $(eval $(call Py3Package,python3-influxdb))
  28. $(eval $(call BuildPackage,python3-influxdb))
  29. $(eval $(call BuildPackage,python3-influxdb-src))