diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb b/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb new file mode 100644 index 0000000000..416b031c5e --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-aspectlib_2.0.0.bb | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | # Copyright (C) 2021 Khem Raj <raj.khem@gmail.com> | ||
| 2 | # Released under the MIT license (see COPYING.MIT for the terms) | ||
| 3 | |||
| 4 | SUMMARY = "An aspect-oriented programming, monkey-patch and decorators library." | ||
| 5 | DESCRIPTION = " It is useful when changing behavior in existing code is desired. \ | ||
| 6 | It includes tools for debugging and testing: simple mock/record and a complete capture/replay framework." | ||
| 7 | HOMEPAGE = "https://github.com/ionelmc/python-aspectlib" | ||
| 8 | LICENSE = "BSD-2-Clause" | ||
| 9 | LIC_FILES_CHKSUM = "file://LICENSE;md5=80721ace117fd1f814049ecb81c6be76" | ||
| 10 | |||
| 11 | SRC_URI[sha256sum] = "a4b461b9da0b531aebcb93efcde3de808a72c60226dd8d902c467d13faf7ce92" | ||
| 12 | |||
| 13 | inherit ptest pypi setuptools3 | ||
| 14 | |||
| 15 | SRC_URI += "file://run-ptest \ | ||
| 16 | " | ||
| 17 | |||
| 18 | do_install_ptest() { | ||
| 19 | install -d ${D}${PTEST_PATH}/tests | ||
| 20 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 21 | } | ||
| 22 | |||
| 23 | RDEPENDS:${PN}-ptest += "\ | ||
| 24 | python3-tornado \ | ||
| 25 | python3-process-tests \ | ||
| 26 | " | ||
| 27 | |||
| 28 | RDEPENDS:${PN} += "python3-core python3-fields" | ||
| 29 | |||
| 30 | BBCLASSEXTEND = "native nativesdk" | ||
