diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb b/meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb new file mode 100644 index 0000000000..bced340b94 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-yappi_1.6.10.bb | |||
@@ -0,0 +1,34 @@ | |||
1 | SUMMARY = "Yet Another Python Profiler" | ||
2 | HOMEPAGE = "https://github.com/sumerc/yappi" | ||
3 | |||
4 | LICENSE = "MIT" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=71c208c9a4fd864385eb69ad4caa3bee" | ||
6 | |||
7 | SRC_URI[sha256sum] = "463b822727658937bd95a7d80ca9758605b8cd0014e004e9e520ec9cb4db0c92" | ||
8 | |||
9 | SRC_URI += " \ | ||
10 | file://0001-test_functionality-convert-line-endings-to-Unix.patch \ | ||
11 | file://0002-Fix-import-of-tests.utils-to-enable-pytest.patch \ | ||
12 | " | ||
13 | |||
14 | inherit pypi python_setuptools_build_meta ptest-python-pytest | ||
15 | |||
16 | RDEPENDS:${PN} += "\ | ||
17 | python3-datetime \ | ||
18 | python3-pickle \ | ||
19 | python3-threading \ | ||
20 | " | ||
21 | |||
22 | RDEPENDS:${PN}-ptest += " \ | ||
23 | python3-gevent \ | ||
24 | python3-multiprocessing \ | ||
25 | python3-pytest \ | ||
26 | python3-profile \ | ||
27 | python3-unittest-automake-output \ | ||
28 | python3-zopeinterface \ | ||
29 | " | ||
30 | |||
31 | do_install_ptest:append() { | ||
32 | cp -f ${S}/run_tests.py ${D}${PTEST_PATH} | ||
33 | } | ||
34 | |||