mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-05 23:30:17 +00:00
Faker is a Python package that generates fake data for you. Whether you need to bootstrap your database, create good-looking XML documents, fill-in your persistence to stress test it, or anonymize data taken from a production service, Faker is for you. * Skip tests/pytest as this causes the 'pytests --automake' parser to fail for some reason [1] and the handful of tests are of questionable extra value. Testsuite summary TOTAL: 2151 PASS: 2146 SKIP: 5 XFAIL: 0 FAIL: 0 XPASS: 0 ERROR: 0 DURATION: 39 Dependency for python3-orjson ptest. [1] https://gitlab.com/rossburton/python-unittest-automake-output/-/issues/9 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
49 lines
1.3 KiB
BlitzBasic
49 lines
1.3 KiB
BlitzBasic
SUMMARY = "Faker is a Python package that generates fake data for you."
|
|
DESCRIPTION = "Faker is a Python package that generates fake data for you. \
|
|
Whether you need to bootstrap your database, create good-looking XML documents, \
|
|
fill-in your persistence to stress test it, or anonymize data taken from a \
|
|
production service, Faker is for you."
|
|
HOMEPAGE = "https://github.com/joke2k/faker"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=53360c4126f7d03b63cb79b0dab9e9e1"
|
|
|
|
SRC_URI[sha256sum] = "b76a68163aa5f171d260fc24827a8349bc1db672f6a665359e8d0095e8135d30"
|
|
|
|
inherit pypi setuptools3 ptest-python-pytest
|
|
|
|
SRC_URI += "file://pytest.ini"
|
|
|
|
PACKAGECONFIG ?= "tzdata"
|
|
PACKAGECONFIG[tzdata] = ",,,python3-tzdata"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
python3-compression \
|
|
python3-core \
|
|
python3-crypt \
|
|
python3-datetime \
|
|
python3-image \
|
|
python3-json \
|
|
python3-logging \
|
|
python3-math \
|
|
python3-netclient \
|
|
python3-numbers \
|
|
python3-pickle \
|
|
python3-pytest \
|
|
python3-stringold \
|
|
python3-unittest \
|
|
python3-xml \
|
|
python3-zoneinfo \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += "\
|
|
python3-freezegun \
|
|
python3-validators \
|
|
"
|
|
|
|
do_install_ptest:append() {
|
|
install ${UNPACKDIR}/pytest.ini ${D}${PTEST_PATH}/
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|