package/python-bleak: new package

Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Marcin Niestroj 2020-12-21 19:28:00 +01:00 committed by Thomas Petazzoni
parent 903a733fda
commit 8eed9ce898
5 changed files with 28 additions and 0 deletions

View File

@ -1595,6 +1595,7 @@ F: package/luaossl/
F: package/murata-cyw-fw/
F: package/netdata/
F: package/python-ansicolors/
F: package/python-bleak/
F: package/python-iniconfig/
F: package/python-intelhex/
F: package/python-packaging/

View File

@ -899,6 +899,7 @@ menu "External python modules"
source "package/python-bcrypt/Config.in"
source "package/python-beautifulsoup4/Config.in"
source "package/python-bitstring/Config.in"
source "package/python-bleak/Config.in"
source "package/python-bluezero/Config.in"
source "package/python-boto3/Config.in"
source "package/python-botocore/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_BLEAK
bool "python-bleak"
select BR2_PACKAGE_PYTHON_TXDBUS # runtime
help
Bluetooth Low Energy platform Agnostic Klient.
https://github.com/hbldh/bleak

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/bleak/json
md5 e891b33804b69f0247eb770ca27fa0d5 bleak-0.10.0.tar.gz
sha256 5c3a873965f2910865895e572e7a4f10533d6e150e6ba17936397426bf8d1eee bleak-0.10.0.tar.gz
# Locally computed sha256 checksums
sha256 c4029a2b63b3824ab68be841f414addbdde20cb79cdbe272fa80c0b2abe65374 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-bleak
#
################################################################################
PYTHON_BLEAK_VERSION = 0.10.0
PYTHON_BLEAK_SOURCE = bleak-$(PYTHON_BLEAK_VERSION).tar.gz
PYTHON_BLEAK_SITE = https://files.pythonhosted.org/packages/80/37/c8c88709e4f1ca4636bf11c96d1ec046d7426cd02670ae80a3542280558b
PYTHON_BLEAK_SETUP_TYPE = setuptools
PYTHON_BLEAK_LICENSE = MIT
PYTHON_BLEAK_LICENSE_FILES = LICENSE
$(eval $(python-package))