blob: 49efd09a4b96974a2f57571d8a2fc28ab3cc95ce [file] [log] [blame]
Andrew Geisslerd5838332022-05-27 11:33:10 -05001SUMMARY = "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
Patrick Williams169d7bc2024-01-05 11:33:25 -06007SRC_URI[sha256sum] = "61a5541f86e4684ab145cb849a5929d2ced8222930a570b3941cf4af16b72a78"
Andrew Geisslerd5838332022-05-27 11:33:10 -05008
9inherit pypi setuptools3
10
11DEPENDS += "python3-pip-native"
12
Patrick Williams169d7bc2024-01-05 11:33:25 -060013RDEPENDS:${PN} += " \
14 ${PYTHON_PN}-eth-utils \
15 ${PYTHON_PN}-typing-extensions \
16"