xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3-ruamel-yaml_0.17.21.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order."
2HOMEPAGE = "https://pypi.org/project/ruamel.yaml/"
3AUTHOR = "Anthon van der Neut"
4
5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=034154b7344d15438bc5ed5ee9cc075f"
7
8PYPI_PACKAGE = "ruamel.yaml"
9
10inherit pypi setuptools3
11
12SRC_URI[sha256sum] = "8b7ce697a2f212752a35c1ac414471dc16c424c9573be4926b56ff3f5d23b7af"
13
14RDEPENDS:${PN} += "\
15    ${PYTHON_PN}-shell \
16    ${PYTHON_PN}-datetime \
17    ${PYTHON_PN}-netclient \
18"
19
20do_install:prepend() {
21    export RUAMEL_NO_PIP_INSTALL_CHECK=1
22}
23
24BBCLASSEXTEND = "native nativesdk"
25