diff options
author | Bartosz Golaszewski <brgl@bgdev.pl> | 2022-05-12 10:41:45 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-05-14 08:17:25 -0700 |
commit | 2bcdde7354de9224fa799de63178607c327788c9 (patch) | |
tree | a61546d14ba1e102f16db9fd12950d18e12b03ca /meta-python | |
parent | 56ab82fe23b8af40fe05d05249c7cfb81694dfc0 (diff) | |
download | meta-openembedded-2bcdde7354de9224fa799de63178607c327788c9.tar.gz |
python3-hexbytes: new package
Add a recipe for hexbytes: a Python bytes subclass that decodes hex,
with a readable console output.
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
-rw-r--r-- | meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb | 1 | ||||
-rw-r--r-- | meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb index 5e41d92c1e..0a96e40051 100644 --- a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb +++ b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb | |||
@@ -474,6 +474,7 @@ RDEPENDS:packagegroup-meta-python3-ptest = "\ | |||
474 | python3-dominate-ptest \ | 474 | python3-dominate-ptest \ |
475 | python3-geojson-ptest \ | 475 | python3-geojson-ptest \ |
476 | python3-gunicorn-ptest \ | 476 | python3-gunicorn-ptest \ |
477 | python3-hexbytes \ | ||
477 | python3-html2text-ptest \ | 478 | python3-html2text-ptest \ |
478 | python3-inflection-ptest \ | 479 | python3-inflection-ptest \ |
479 | python3-intervals-ptest \ | 480 | python3-intervals-ptest \ |
diff --git a/meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb b/meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb new file mode 100644 index 0000000000..89792d9806 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-hexbytes_0.2.2.bb | |||
@@ -0,0 +1,9 @@ | |||
1 | SUMMARY = "Python bytes subclass that decodes hex, with a readable console output." | ||
2 | HOMEPAGE = "https://github.com/ethereum/hexbytes" | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "MIT" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=287820ad3553117aa2f92bf84c219324" | ||
6 | |||
7 | SRC_URI[sha256sum] = "a5881304d186e87578fb263a85317c808cf130e1d4b3d37d30142ab0f7898d03" | ||
8 | |||
9 | inherit pypi setuptools3 | ||