1config BR2_PACKAGE_PYTHON_PYUSB
2	bool "python-pyusb"
3	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
4	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
5	select BR2_PACKAGE_LIBUSB
6	help
7	  The PyUSB module provides easy access to the Universal
8	  Serial Bus (USB) from Python.
9
10	  http://sourceforge.net/apps/trac/pyusb/
11
12comment "python-pyusb needs a toolchain w/ threads, gcc >= 4.9"
13	depends on !BR2_TOOLCHAIN_HAS_THREADS || \
14		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
15