package/python-propcache: 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-10-27 19:35:36 -06:00 committed by Thomas Petazzoni
parent 0b752ad14b
commit 2fa55b4382
4 changed files with 29 additions and 0 deletions

View file

@ -1269,6 +1269,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-propcache/Config.in"
source "package/python-proto-plus/Config.in"
source "package/python-protobuf/Config.in"
source "package/python-psutil/Config.in"

View file

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_PROPCACHE
bool "python-propcache"
help
Accelerated property cache.
https://github.com/aio-libs/propcache

View file

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/propcache/json
md5 70b121a9845a0da06eccfbc42ff74335 propcache-0.2.0.tar.gz
sha256 df81779732feb9d01e5d513fad0122efb3d53bbc75f61b2a4f29a020bc985e70 propcache-0.2.0.tar.gz
# Locally computed sha256 checksums
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE

View file

@ -0,0 +1,17 @@
################################################################################
#
# python-propcache
#
################################################################################
PYTHON_PROPCACHE_VERSION = 0.2.0
PYTHON_PROPCACHE_SOURCE = propcache-$(PYTHON_PROPCACHE_VERSION).tar.gz
PYTHON_PROPCACHE_SITE = https://files.pythonhosted.org/packages/a9/4d/5e5a60b78dbc1d464f8a7bbaeb30957257afdc8512cbb9dfd5659304f5cd
PYTHON_PROPCACHE_SETUP_TYPE = setuptools
PYTHON_PROPCACHE_LICENSE = Apache-2.0
PYTHON_PROPCACHE_LICENSE_FILES = LICENSE
PYTHON_PROPCACHE_DEPENDENCIES = \
host-python-cython \
host-python-expandvars
$(eval $(python-package))