package/python-grpclib: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
This commit is contained in:
James Hilliard 2024-04-01 23:08:25 -06:00 committed by Arnout Vandecappelle
parent c1d9e4b9f7
commit c3faf4f716
4 changed files with 28 additions and 0 deletions

View File

@ -1126,6 +1126,7 @@ menu "External python modules"
source "package/python-grpc-requests/Config.in"
source "package/python-grpcio/Config.in"
source "package/python-grpcio-reflection/Config.in"
source "package/python-grpclib/Config.in"
source "package/python-gunicorn/Config.in"
source "package/python-h11/Config.in"
source "package/python-h2/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_GRPCLIB
bool "python-grpclib"
select BR2_PACKAGE_PYTHON_H2 # runtime
select BR2_PACKAGE_PYTHON_MULTIDICT # runtime
help
Pure-Python gRPC implementation for asyncio.
https://github.com/vmagamedov/grpclib

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/grpclib/json
md5 60ce203e5b9f95de3d7e5721dbce2bd9 grpclib-0.4.7.tar.gz
sha256 2988ef57c02b22b7a2e8e961792c41ccf97efc2ace91ae7a5b0de03c363823c3 grpclib-0.4.7.tar.gz
# Locally computed sha256 checksums
sha256 6c7fa8cf9b94ad5043a6b550a0ffb98356e66100b69dd1cb8e1f82606b436e8e LICENSE.txt

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-grpclib
#
################################################################################
PYTHON_GRPCLIB_VERSION = 0.4.7
PYTHON_GRPCLIB_SOURCE = grpclib-$(PYTHON_GRPCLIB_VERSION).tar.gz
PYTHON_GRPCLIB_SITE = https://files.pythonhosted.org/packages/79/b9/55936e462a5925190d7427e880b3033601d1effd13809b483d13a926061a
PYTHON_GRPCLIB_SETUP_TYPE = setuptools
PYTHON_GRPCLIB_LICENSE = BSD-3-Clause
PYTHON_GRPCLIB_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))