mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
9f8d3f47d7
Fixes the following error/warnings with kconfig from linux-6.9-rc5: package/python-pydal/Config.in:2: syntax error package/python-pydal/Config.in:2: invalid statement package/python-pydal/Config.in:3: invalid statement [...] Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16 lines
605 B
Plaintext
16 lines
605 B
Plaintext
config BR2_PACKAGE_PYTHON_PYDAL
|
|
bool "python-pydal"
|
|
help
|
|
pyDAL is a pure Python Database Abstraction Layer. It
|
|
dynamically generates the SQL in real time using the
|
|
specified dialect for the database back end, so that you do
|
|
not have to write SQL code or learn different SQL dialects
|
|
(the term SQL is used generically), and your code will be
|
|
portable among different types of databases.
|
|
|
|
pyDAL comes from the original web2py's DAL, with the aim of
|
|
being wide-compatible. pyDAL doesn't require web2py and can
|
|
be used in any Python context.
|
|
|
|
https://github.com/web2py/pydal
|