blob: bc5b857c02a0d886d639047c4aad35a913c0f6ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
#
# Copyright (C) 2023
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=python-bleak
PKG_VERSION:=3.0.1
PKG_RELEASE:=1
PYPI_NAME:=bleak
PKG_HASH:=c8ff077519f8c30a972fd0d22f47a54b981184b2f2a0886d02e55acadbc1045d
PKG_MAINTAINER:=Quintin Hill <stuff@quintin.me.uk>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE
PKG_BUILD_DEPENDS:=python-poetry-core/host
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-bleak
SECTION:=lang
CATEGORY:=Languages
SUBMENU:=Python
TITLE:=Bluetooth Low Energy platform Agnostic Klient
URL:=https://github.com/hbldh/bleak
DEPENDS:=+python3-light +python3-async-timeout +python3-asyncio \
+python3-dbus-fast +python3-ctypes +python3-typing-extensions +python3-logging \
+python3-uuid
endef
define Package/python3-bleak/description
Bleak is an acronym for Bluetooth Low Energy platform Agnostic Klient.
Bleak is a GATT client software, capable of connecting to BLE devices acting
as GATT servers. It is designed to provide a asynchronous, cross-platform
Python API to connect and communicate with e.g. sensors.
endef
$(eval $(call Py3Package,python3-bleak))
$(eval $(call BuildPackage,python3-bleak))
$(eval $(call BuildPackage,python3-bleak-src))
|