forked from platypush/platypush
Fabio Manganiello
98e9abde18
- If a Python optional dependency is available as a system package on the target system, try and install it that route rather than pip. It's usually faster and it decreases the risk of breaking system packages. - Added support for apk dependencies in manifest files. This brings the number of distros officially supported by all the extensions to four: - Alpine - Arch - Debian - Ubuntu
14 lines
447 B
YAML
14 lines
447 B
YAML
manifest:
|
|
events:
|
|
platypush.message.event.hid.HidDeviceConnectedEvent: when a device is connected
|
|
platypush.message.event.hid.HidDeviceDisconnectedEvent: when a previously available device is disconnected
|
|
platypush.message.event.hid.HidDeviceDataEvent: when a monitored device sends some data
|
|
install:
|
|
apt:
|
|
- python3-hid
|
|
pacman:
|
|
- python-hid
|
|
pip:
|
|
- hid
|
|
package: platypush.plugins.hid
|
|
type: plugin
|