Config.in 715 B

123456789101112131415161718
  1. config BR2_PACKAGE_PYTHON_CHANNELS_REDIS
  2. bool "python-channels-redis"
  3. depends on BR2_INSTALL_LIBSTDCPP # python-channels -> python-daphne
  4. depends on BR2_PACKAGE_PYTHON3 # python-channels
  5. select BR2_PACKAGE_PYTHON_AIOREDIS # runtime
  6. select BR2_PACKAGE_PYTHON_ASGIREF # runtime
  7. select BR2_PACKAGE_PYTHON_CHANNELS # runtime
  8. select BR2_PACKAGE_PYTHON_MSGPACK # runtime
  9. help
  10. A Django Channels channel layer that uses Redis as its
  11. backing store, and supports both a single-server and
  12. sharded configurations, as well as group support.
  13. http://github.com/django/channels_redis/
  14. comment "python-channels-redis needs a toolchain w/ C++"
  15. depends on !BR2_INSTALL_LIBSTDCPP
  16. depends on BR2_PACKAGE_PYTHON3