blob: a71d9fd4760028ce06c79b97d1c2dd4746471b3d [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001# This is free software, licensed under the GNU General Public License v2.
2# See /LICENSE for more information.
3#
4
5include $(TOPDIR)/rules.mk
6
7PKG_NAME:=python-influxdb
8PKG_VERSION:=5.3.1
9PKG_RELEASE:=1
10PKG_MAINTAINER:=Josef Schlehofer <pepe.schlehofer@gmail.com
11
12PYPI_NAME:=influxdb
13PKG_HASH:=46f85e7b04ee4b3dee894672be6a295c94709003a7ddea8820deec2ac4d8b27a
14
15PKG_LICENSE:=MIT
16PKG_LICENSE_FILES:=LICENSE
17
18include ../pypi.mk
19include $(INCLUDE_DIR)/package.mk
20include ../python3-package.mk
21
22define Package/python3-influxdb
23 SECTION:=lang
24 CATEGORY:=Languages
25 SUBMENU:=Python
26 URL:=https://github.com/influxdb/influxdb-python
27 TITLE:=InfluxDB client
28 DEPENDS:=\
29 +python3-light \
30 +python3-requests \
31 +python3-pytz \
32 +python3-six \
33 +python3-dateutil \
34 +python3-msgpack
35endef
36
37define Package/python3-influxdb/description
38 Python client for InfluxDB
39endef
40
41$(eval $(call Py3Package,python3-influxdb))
42$(eval $(call BuildPackage,python3-influxdb))
43$(eval $(call BuildPackage,python3-influxdb-src))