mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
package/python-bluezero: new package
Python library for Bluetooth Low Energy (BLE) on Linux. Signed-off-by: Grzegorz Blach <grzegorz@blach.pl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
a88e87eee0
commit
2dbbdb7a8a
@ -987,6 +987,7 @@ F: package/bluez5_utils-headers/
|
||||
F: package/f2fs-tools/
|
||||
F: package/pigpio/
|
||||
F: package/python-aioblescan/
|
||||
F: package/python-bluezero/
|
||||
F: package/python-falcon/
|
||||
F: package/python-ifaddr/
|
||||
F: package/python-hiredis/
|
||||
|
@ -842,6 +842,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-bluezero/Config.in"
|
||||
source "package/python-bottle/Config.in"
|
||||
source "package/python-brotli/Config.in"
|
||||
source "package/python-cached-property/Config.in"
|
||||
|
11
package/python-bluezero/Config.in
Normal file
11
package/python-bluezero/Config.in
Normal file
@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_PYTHON_BLUEZERO
|
||||
bool "python-bluezero"
|
||||
help
|
||||
Python library for Bluetooth Low Energy (BLE) on Linux.
|
||||
|
||||
For central.py, peripheral.py and broadcaster.py you need
|
||||
to enable the dbus-python and the bluez5-utils package.
|
||||
For observer.py, you need to enable the python-aioblescan
|
||||
package.
|
||||
|
||||
https://github.com/ukBaz/python-bluezero
|
3
package/python-bluezero/python-bluezero.hash
Normal file
3
package/python-bluezero/python-bluezero.hash
Normal file
@ -0,0 +1,3 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/bluezero/json
|
||||
md5 b13fd84a5fe98ce9526a6f513c9131b1 bluezero-0.2.0.tar.gz
|
||||
sha256 d16eb9ac048665a974ad0db312b23bfd528423000b7b2983566b853d5e0d19b6 bluezero-0.2.0.tar.gz
|
13
package/python-bluezero/python-bluezero.mk
Normal file
13
package/python-bluezero/python-bluezero.mk
Normal file
@ -0,0 +1,13 @@
|
||||
################################################################################
|
||||
#
|
||||
# python-bluezero
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_BLUEZERO_VERSION = 0.2.0
|
||||
PYTHON_BLUEZERO_SOURCE = bluezero-$(PYTHON_BLUEZERO_VERSION).tar.gz
|
||||
PYTHON_BLUEZERO_SITE = https://files.pythonhosted.org/packages/9c/76/8f5250e119be8aff4f7ac3acb9d91589909d8650152fdf6758bfb01f9576
|
||||
PYTHON_BLUEZERO_SETUP_TYPE = setuptools
|
||||
PYTHON_BLUEZERO_LICENSE = MIT
|
||||
|
||||
$(eval $(python-package))
|
Loading…
Reference in New Issue
Block a user