summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2023-12-18 19:09:01 +0200
committerKhem Raj <raj.khem@gmail.com>2023-12-18 22:17:25 -0800
commitfb7023bd3c2038fc61f40d3ed95c96a74cef2368 (patch)
treedc7641eb7d5d536c087dc9b094bafcdfb5003d00 /meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb
parent1d887eede793e8e3da3a75f3ffead7ea1d867698 (diff)
downloadmeta-openembedded-fb7023bd3c2038fc61f40d3ed95c96a74cef2368.tar.gz
python3-rlp: upgrade 3.0.0 -> 4.0.0
Upgrade to version 4.0.0: - repr() now returns an evaluatable string, like MyRLPObj(my_int_field=1, my_str_field="a_str") - Convert .format strings to f-strings - Add autoflake linting and move config to pyproject.toml Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb16
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb b/meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb
new file mode 100644
index 0000000000..49efd09a4b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-rlp_4.0.0.bb
@@ -0,0 +1,16 @@
1SUMMARY = "A Python implementation of Recursive Length Prefix encoding (RLP)."
2HOMEPAGE = "https://github.com/ethereum/pyrlp"
3SECTION = "devel/python"
4LICENSE = "MIT"
5LIC_FILES_CHKSUM = "file://LICENSE;md5=00854fa80a84236706b11f47f23e61e7"
6
7SRC_URI[sha256sum] = "61a5541f86e4684ab145cb849a5929d2ced8222930a570b3941cf4af16b72a78"
8
9inherit pypi setuptools3
10
11DEPENDS += "python3-pip-native"
12
13RDEPENDS:${PN} += " \
14 ${PYTHON_PN}-eth-utils \
15 ${PYTHON_PN}-typing-extensions \
16"