mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: =========== - hotfix: ensure _tld.txt is in sdist and bdist - fix: corrects a few typo - build(deps): bump jinja2 from 3.1.3 to 3.1.4 in /package - fix(ip_address): properly handle private is false - chore(url): allow symbols and pictographs in url - build(deps): bump requests from 2.31.0 to 2.32.0 in /package - chore: fix typo; update dev deps; bump version Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
31 lines
685 B
BlitzBasic
31 lines
685 B
BlitzBasic
SUMMARY = "Python Data Validation for Humans"
|
|
HOMEPAGE = "https://python-validators.github.io/validators"
|
|
LICENSE = "MIT"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b3fb4b9e6db86c69a33d5e3ee013ab59"
|
|
SRC_URI[sha256sum] = "c6c79840bcde9ba77b19f6218f7738188115e27830cbaff43264bc4ed24c429d"
|
|
|
|
inherit pypi python_setuptools_build_meta ptest
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-crypt \
|
|
python3-datetime \
|
|
python3-netclient \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|