mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
On Python 3.11+, the built-in datetime module is used instead. This change was made in v7.1.0 release. See PR 2929: https://github.com/RDFLib/rdflib/blob/main/CHANGELOG.md#2024-10-17-release-710 (From OE-Core rev: 70cb0adf3612fb15b6b2723c0af6ba1467d210b5) Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
22 lines
571 B
BlitzBasic
22 lines
571 B
BlitzBasic
SUMMARY = "RDFLib is a pure Python package for working with RDF"
|
|
HOMEPAGE = "https://github.com/RDFLib/rdflib"
|
|
SECTION = "devel/python"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e1efde25e459057a815649b18cbefa5e"
|
|
|
|
SRC_URI[sha256sum] = "164de86bd3564558802ca983d84f6616a4a1a420c7a17a8152f5016076b2913e"
|
|
|
|
inherit pypi python_poetry_core
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-datetime \
|
|
python3-pyparsing \
|
|
python3-logging \
|
|
python3-numbers \
|
|
python3-xml \
|
|
python3-compression \
|
|
python3-core \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|