package/python-proto-plus: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
James Hilliard 2024-09-15 01:14:46 -06:00 committed by Thomas Petazzoni
parent 1d7032533d
commit 39fb155071
4 changed files with 28 additions and 0 deletions

View File

@ -1261,6 +1261,7 @@ menu "External python modules"
source "package/python-posix-ipc/Config.in"
source "package/python-priority/Config.in"
source "package/python-prompt-toolkit/Config.in"
source "package/python-proto-plus/Config.in"
source "package/python-protobuf/Config.in"
source "package/python-psutil/Config.in"
source "package/python-psycopg2/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PROTO_PLUS
bool "python-proto-plus"
depends on BR2_PACKAGE_HOST_PROTOBUF_ARCH_SUPPORTS
select BR2_PACKAGE_PYTHON_PROTOBUF # runtime
help
Beautiful, Pythonic protocol buffers.
https://github.com/googleapis/proto-plus-python

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/proto-plus/json
md5 7af507ef2f7c1e512321c29ed5cf131c proto-plus-1.24.0.tar.gz
sha256 30b72a5ecafe4406b0d339db35b56c4059064e69227b8c3bda7462397f966445 proto-plus-1.24.0.tar.gz
# Locally computed sha256 checksums
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-proto-plus
#
################################################################################
PYTHON_PROTO_PLUS_VERSION = 1.24.0
PYTHON_PROTO_PLUS_SOURCE = proto-plus-$(PYTHON_PROTO_PLUS_VERSION).tar.gz
PYTHON_PROTO_PLUS_SITE = https://files.pythonhosted.org/packages/3e/fc/e9a65cd52c1330d8d23af6013651a0bc50b6d76bcbdf91fae7cd19c68f29
PYTHON_PROTO_PLUS_SETUP_TYPE = setuptools
PYTHON_PROTO_PLUS_LICENSE = Apache-2.0
PYTHON_PROTO_PLUS_LICENSE_FILES = LICENSE
$(eval $(python-package))