blob: b1f5006d65b272b9f35ffb531444ffb352e869d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[ "$1" = python3-bleak ] || exit 0
python3 - << 'EOF'
import bleak
from bleak import BleakScanner, BleakClient
from bleak.backends.device import BLEDevice
from bleak.backends.scanner import AdvertisementData
assert bleak.__author__ is not None
assert BleakScanner is not None
assert BleakClient is not None
assert BLEDevice is not None
assert AdvertisementData is not None
print("python3-bleak OK")
EOF
|