diff options
author | Tim Orling <timothy.t.orling@linux.intel.com> | 2020-11-27 20:24:25 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-11-30 14:42:22 +0000 |
commit | fd89a998681521aa3b65177a2d69f22689eb09a4 (patch) | |
tree | beeb34cd191bbe95f82983b5c6d5c09822c592e2 | |
parent | 8bbcf68ab5e3d63fcd1267abe6b50a70495b8e76 (diff) | |
download | poky-fd89a998681521aa3b65177a2d69f22689eb09a4.tar.gz |
python3-importlib-metadata: move from meta-python
Read metadata from Python packages
* Part of the dependency chain for pytest
(From OE-Core rev: a054b48fc7827256cbe64492c3cc83692f80346d)
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python3-importlib-metadata_2.0.0.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-importlib-metadata_2.0.0.bb b/meta/recipes-devtools/python/python3-importlib-metadata_2.0.0.bb new file mode 100644 index 0000000000..325a41c22e --- /dev/null +++ b/meta/recipes-devtools/python/python3-importlib-metadata_2.0.0.bb | |||
@@ -0,0 +1,18 @@ | |||
1 | DESCRIPTION = "Read metadata from Python packages" | ||
2 | HOMEPAGE = "https://pypi.org/project/importlib-metadata/" | ||
3 | LICENSE = "Apache-2.0" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e88ae122f3925d8bde8319060f2ddb8e" | ||
5 | |||
6 | inherit pypi setuptools3 | ||
7 | |||
8 | SRC_URI = "https://files.pythonhosted.org/packages/56/1f/74c3e29389d34feea2d62ba3de1169efea2566eb22e9546d379756860525/importlib_metadata-2.0.0.tar.gz" | ||
9 | S = "${WORKDIR}/importlib_metadata-${PV}" | ||
10 | SRC_URI[md5sum] = "3dd91821c930a3c3633e99a7025aa9c2" | ||
11 | SRC_URI[sha256sum] = "77a540690e24b0305878c37ffd421785a6f7e53c8b5720d211b211de8d0e95da" | ||
12 | |||
13 | DEPENDS += "${PYTHON_PN}-setuptools-scm-native" | ||
14 | RDEPENDS_${PN} += "${PYTHON_PN}-zipp ${PYTHON_PN}-pathlib2" | ||
15 | RDEPENDS_${PN}_append_class-target = " python3-misc" | ||
16 | RDEPENDS_${PN}_append_class-nativesdk = " python3-misc" | ||
17 | |||
18 | BBCLASSEXTEND = "native nativesdk" | ||