buildroot/package/python-asgiref/Config.in
Pierre-Jean Texier 7a398e8bde package/python-asgiref: properly order "depends on" vs. bool
This fixes a check-package warning introduced by commit
9b746f8 ("package/python-asgiref: drop Python 2 support")
Fixes:

$: ./utils/check-package package/python-asgiref/*
package/python-asgiref/Config.in:3: attributes order: type, default, depends on, select, help (http://nightly.buildroot.org/#_config_files)
34 lines processed
1 warnings generated

Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-10-21 23:28:53 +02:00

16 lines
515 B
Plaintext

config BR2_PACKAGE_PYTHON_ASGIREF
bool "python-asgiref"
depends on BR2_PACKAGE_PYTHON3
help
ASGI is a standard for Python asynchronous web apps and
servers to communicate with each other, and positioned as
an asynchronous successor to WSGI.
This package includes ASGI base libraries, such as:
- Sync-to-async and async-to-sync function wrappers,
asgiref.sync
- Server base classes, asgiref.server
- A WSGI-to-ASGI adapter, in asgiref.wsgi
http://github.com/django/asgiref/