1SUMMARY = "Python tool to parse, validate and convert spdx files" 2HOMEPAGE = "https://github.com/spdx/tools-python" 3 4LICENSE = "Apache-2.0" 5LIC_FILES_CHKSUM = "file://LICENSE;md5=dc7f21ccff0f672f2a7cd6f412ae627d" 6 7SRC_URI[sha256sum] = "68b8f9ce2893b5216bd90b2e63f1c821c2884e4ebc4fd295ebbf1fa8b8a94b93" 8 9BBCLASSEXTEND = "native nativesdk" 10 11inherit pypi python_setuptools_build_meta 12 13DEPENDS += "python3-setuptools-scm-native" 14 15# Dependency required for pyspdxtools : python3-click 16# Dependencies required for conversion to spdx3 : python3-semantic-version, python3-ply 17RDEPENDS:${PN} += "\ 18 python3-core \ 19 python3-beartype \ 20 python3-click \ 21 python3-datetime \ 22 python3-json \ 23 python3-license-expression \ 24 python3-ply \ 25 python3-pyyaml \ 26 python3-rdflib \ 27 python3-semantic-version \ 28 python3-uritools \ 29 python3-xmltodict \ 30 " 31