Andrew Geissler | 8f84068 | 2023-07-21 09:09:43 -0500 | [diff] [blame] | 1 | # SPDX-License-Identifier: MIT |
| 2 | # Copyright (C) 2023 iris-GmbH infrared & intelligent sensors |
| 3 | |
| 4 | SUMMARY = "A tool for creating isolated virtual python environments." |
| 5 | HOMEPAGE = "https://github.com/pypa/virtualenv" |
| 6 | LICENSE = "MIT" |
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=0ce089158cf60a8ab6abb452b6405538" |
| 8 | |
Andrew Geissler | 5082cc7 | 2023-09-11 08:41:39 -0400 | [diff] [blame] | 9 | SRC_URI[sha256sum] = "772b05bfda7ed3b8ecd16021ca9716273ad9f4467c801f27e83ac73430246dca" |
Andrew Geissler | 8f84068 | 2023-07-21 09:09:43 -0500 | [diff] [blame] | 10 | |
| 11 | BBCLASSEXTEND = "native nativesdk" |
| 12 | inherit pypi python_hatchling |
| 13 | |
| 14 | DEPENDS += "\ |
| 15 | ${PYTHON_PN}-hatch-vcs-native \ |
| 16 | " |
| 17 | |
| 18 | RDEPENDS:${PN} += " \ |
| 19 | ${PYTHON_PN}-distlib \ |
| 20 | ${PYTHON_PN}-filelock \ |
| 21 | ${PYTHON_PN}-platformdirs \ |
| 22 | " |