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.

41 lines
962 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.3.0
  7. PKG_RELEASE:=1
  8. PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz>
  9. PYPI_NAME:=influxdb
  10. PKG_HASH:=9bcaafd57ac152b9824ab12ed19f204206ef5df8af68404770554c5b55b475f6
  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:=\
  22. +python3-requests \
  23. +python3-pytz \
  24. +python3-six \
  25. +python3-dateutil \
  26. +python3-msgpack
  27. endef
  28. define Package/python3-influxdb/description
  29. Python client for InfluxDB
  30. endef
  31. $(eval $(call Py3Package,python3-influxdb))
  32. $(eval $(call BuildPackage,python3-influxdb))
  33. $(eval $(call BuildPackage,python3-influxdb-src))