Files
meta-openembedded/meta-python/recipes-devtools/python/python3-tokenize-rt_6.2.0.bb
T
Ross Burton e2f053038c meta-python: remove redundant UPSTREAM_CHECK_PYPI_PACKAGE
Remove redundant UPSTREAM_CHECK_PYPI_PACKAGE assignments of PYPI_PACKAGE,
which is the default value.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
2026-09-04 17:10:37 -07:00

21 lines
743 B
BlitzBasic

SUMMARY = "A wrapper around the stdlib `tokenize` which roundtrips."
HOMEPAGE = "https://github.com/asottile/tokenize-rt"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=5fd324061c581b8d45b8cb18c560a543"
SRCREV = "1582bcf0259d183259da1761444c6fc73fa7ad9a"
PYPI_SRC_URI = "git://github.com/asottile/tokenize-rt.git;protocol=https;branch=main;tag=v${PV};destsuffix=tokenize_rt-${PV}"
inherit pypi setuptools3 ptest-python-pytest
RDEPENDS:${PN} += "python3-core"
PYPI_PACKAGE = "tokenize_rt"
do_install_ptest:append() {
install -d ${D}${PTEST_PATH}/testing/resources
cp -rf ${S}/testing/resources/* ${D}${PTEST_PATH}/testing/resources/
install -d ${D}${PTEST_PATH}/tests
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
}