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

Changelog: ========== - fix: reduce memory footprint when loading TLDs - build(deps): bump idna from 3.6 to 3.7 in /package - fix: rfc cases in the domain validator - chore: documentation maintenance - chore: update contribution guidelines - chore: updated dev dependencies; 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] = "5ac88e7916c3405f0ce38ac2ac82a477fcf4d90dbbeddd04c8193171fc17f7dc"
|
|
|
|
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"
|