2019-02-04 20:57:27 +08:00
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
|
|
PKG_NAME:=python-influxdb
|
2023-08-07 14:04:27 +08:00
|
|
|
|
PKG_VERSION:=5.3.1
|
2020-10-20 19:53:30 +08:00
|
|
|
|
PKG_RELEASE:=1
|
2023-09-04 17:08:43 +08:00
|
|
|
|
PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com>
|
2019-02-04 20:57:27 +08:00
|
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
|
PYPI_NAME:=influxdb
|
2023-08-07 14:04:27 +08:00
|
|
|
|
PKG_HASH:=46f85e7b04ee4b3dee894672be6a295c94709003a7ddea8820deec2ac4d8b27a
|
2020-10-20 19:53:30 +08:00
|
|
|
|
|
2019-02-04 20:57:27 +08:00
|
|
|
|
PKG_LICENSE:=MIT
|
2023-08-07 14:04:27 +08:00
|
|
|
|
PKG_LICENSE_FILES:=LICENSE
|
2019-02-04 20:57:27 +08:00
|
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
|
include ../pypi.mk
|
2019-02-04 20:57:27 +08:00
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
include ../python3-package.mk
|
|
|
|
|
|
|
|
|
|
define Package/python3-influxdb
|
|
|
|
|
SECTION:=lang
|
|
|
|
|
CATEGORY:=Languages
|
|
|
|
|
SUBMENU:=Python
|
|
|
|
|
URL:=https://github.com/influxdb/influxdb-python
|
2023-08-07 14:04:27 +08:00
|
|
|
|
TITLE:=InfluxDB client
|
2020-10-20 19:53:30 +08:00
|
|
|
|
DEPENDS:=\
|
2023-08-07 14:04:27 +08:00
|
|
|
|
+python3-light \
|
2020-10-20 19:53:30 +08:00
|
|
|
|
+python3-requests \
|
|
|
|
|
+python3-pytz \
|
|
|
|
|
+python3-six \
|
|
|
|
|
+python3-dateutil \
|
|
|
|
|
+python3-msgpack
|
2019-02-04 20:57:27 +08:00
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
define Package/python3-influxdb/description
|
|
|
|
|
Python client for InfluxDB
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-influxdb))
|
|
|
|
|
$(eval $(call BuildPackage,python3-influxdb))
|
|
|
|
|
$(eval $(call BuildPackage,python3-influxdb-src))
|