1config BR2_PACKAGE_PYTHON_LIBUSB1
2	bool "python-libusb1"
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	  Pure-python wrapper for libusb-1.0.
8
9	  http://github.com/vpelletier/python-libusb1
10
11comment "python-libusb1 needs a toolchain w/ threads, gcc >= 4.9"
12	depends on !BR2_TOOLCHAIN_HAS_THREADS || \
13		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
14