Files
buildroot/package/python-libyang/Config.in
Vincent Jardin 3872cf8a75 package/python-libyang: new package
Python CFFI bindings for the libyang YANG library, providing the
'libyang' Python module for YANG data modeling operations.

This package is used by higher-level tooling such as python-sysrepo.

https://github.com/CESNET/libyang-python
Signed-off-by: Vincent Jardin <vjardin@free.fr>
Signed-off-by: Vincent Cruz <mooz@blockos.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2026-05-30 16:17:18 +02:00

19 lines
645 B
Plaintext

config BR2_PACKAGE_PYTHON_LIBYANG
bool "python-libyang"
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libyang
depends on BR2_TOOLCHAIN_HAS_THREADS # libyang
depends on !BR2_STATIC_LIBS # libyang
select BR2_PACKAGE_LIBYANG
select BR2_PACKAGE_PYTHON_CFFI # runtime
help
Python CFFI bindings for the libyang YANG library.
This package provides the 'libyang' Python module, used by
higher-level tooling such as python-sysrepo.
https://github.com/CESNET/libyang-python
comment "python-libyang needs a toolchain w/ threads, dynamic library"
depends on !BR2_TOOLCHAIN_HAS_SYNC_4
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS