summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-hypothesis_6.80.0.bb
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2023-07-17 01:40:26 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-07-19 19:37:38 +0100
commit05076f4b4940e1cc6e25ebc1d8e1a7d7b662b191 (patch)
treeae2bf33fd7aae586332dfc8c834f5003336e40e0 /meta/recipes-devtools/python/python3-hypothesis_6.80.0.bb
parent7c6d1f7bc070bba3db662a80db6cf6a778740f80 (diff)
downloadpoky-05076f4b4940e1cc6e25ebc1d8e1a7d7b662b191.tar.gz
python3-hypothesis: upgrade 6.80.0 -> 6.81.2
https://hypothesis.readthedocs.io/en/latest/changes.html#v6-81-2 https://hypothesis.readthedocs.io/en/latest/changes.html#v6-81-1 (From OE-Core rev: 95f0610650f5a82e669a8962205f23d097c08516) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-hypothesis_6.80.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-hypothesis_6.80.0.bb39
1 files changed, 0 insertions, 39 deletions
diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.80.0.bb b/meta/recipes-devtools/python/python3-hypothesis_6.80.0.bb
deleted file mode 100644
index 82f855d4b7..0000000000
--- a/meta/recipes-devtools/python/python3-hypothesis_6.80.0.bb
+++ /dev/null
@@ -1,39 +0,0 @@
1SUMMARY = "A library for property-based testing"
2HOMEPAGE = "https://github.com/HypothesisWorks/hypothesis/tree/master/hypothesis-python"
3LICENSE = "MPL-2.0"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4ee62c16ebd0f4f99d906f36b7de8c3c"
5
6PYPI_PACKAGE = "hypothesis"
7
8inherit pypi setuptools3 ptest
9
10SRC_URI += " \
11 file://run-ptest \
12 file://test_binary_search.py \
13 file://test_rle.py \
14 "
15
16SRC_URI[sha256sum] = "75d74da36fd3837b5b3fe15211dabc7389e78d882bf2c91bab2184ccf91fe64c"
17
18RDEPENDS:${PN} += " \
19 python3-attrs \
20 python3-compression \
21 python3-core \
22 python3-json \
23 python3-pytest \
24 python3-sortedcontainers \
25 python3-statistics \
26 python3-unittest \
27 "
28
29RDEPENDS:${PN}-ptest += " \
30 ${PYTHON_PN}-unittest-automake-output \
31 "
32
33do_install_ptest() {
34 install -d ${D}${PTEST_PATH}/examples
35 install -m 0755 ${WORKDIR}/test_binary_search.py ${D}${PTEST_PATH}/examples/
36 install -m 0755 ${WORKDIR}/test_rle.py ${D}${PTEST_PATH}/examples/
37}
38
39BBCLASSEXTEND = "native nativesdk"