ASR_BASE
Change-Id: Icf3719cc0afe3eeb3edc7fa80a2eb5199ca9dda1
diff --git a/external/subpack/lang/python/python-bleak/Makefile b/external/subpack/lang/python/python-bleak/Makefile
new file mode 100644
index 0000000..32550e2
--- /dev/null
+++ b/external/subpack/lang/python/python-bleak/Makefile
@@ -0,0 +1,45 @@
+#
+# 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:=0.21.1
+PKG_RELEASE:=2
+
+PYPI_NAME:=bleak
+PKG_HASH:=ec4a1a2772fb315b992cbaa1153070c7e26968a52b0e2727035f443a1af5c18f
+
+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
+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))