mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
The newly added ptest-python-pytest removes duplication for: 1. Copying pytest files to the ptest directory 2. Adding standard pytest dependencies 3. Adding a common run-ptest script using pytest (From OE-Core rev: 8d84d9e19b9292b1863921611924714d77c41d21) Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
758 B
BlitzBasic
25 lines
758 B
BlitzBasic
SUMMARY = "Python support for YAML"
|
|
HOMEPAGE = "https://pyyaml.org/"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=6d8242660a8371add5fe547adf083079"
|
|
|
|
SRC_URI[sha256sum] = "d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"
|
|
|
|
SRC_URI += "\
|
|
https://raw.githubusercontent.com/yaml/pyyaml/a98fd6088e81d7aca571220c966bbfe2ac43c335/tests/test_dump_load.py;name=test \
|
|
"
|
|
SRC_URI[test.sha256sum] = "b6a8a2825d89fdc8aee226560f66b8196e872012a0ea7118cbef1a832359434a"
|
|
|
|
inherit pypi python_setuptools_build_meta ptest-python-pytest cython
|
|
|
|
PACKAGECONFIG ?= "libyaml"
|
|
PACKAGECONFIG[libyaml] = "--with-libyaml,--without-libyaml,libyaml"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-datetime \
|
|
python3-netclient \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|