Add nested-lookup package

This commit is contained in:
j1nx 2023-05-14 13:37:10 +02:00
parent 8f8b40d615
commit e740cb159f
4 changed files with 25 additions and 0 deletions

View File

@ -205,6 +205,7 @@ menu "Additional external python modules"
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-neon-solvers/Config.in"
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-neon-transformers/Config.in"
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-neon-utterance-plugin-rake/Config.in"
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-nested-lookup/Config.in"
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-num2words/Config.in"
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-oauth2client/Config.in"
source "$BR2_EXTERNAL_OPENVOICEOS_PATH/package/python-olefile/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_NESTED_LOOKUP
bool "python-nested-lookup"
select BR2_PACKAGE_PYTHON_SIX # runtime
help
Python functions for working with deeply nested documents
(lists and dicts).
https://git.unturf.com/python/nested-lookup

View File

@ -0,0 +1,3 @@
# md5, sha256 from https://pypi.org/pypi/nested-lookup/json
md5 cc34addfe1997aa25fce42c89b3eb416 nested-lookup-0.2.25.tar.gz
sha256 6fa832748c90381f2291d850809e32492519ee5f253d6a5acbc29d937eca02e8 nested-lookup-0.2.25.tar.gz

View File

@ -0,0 +1,13 @@
################################################################################
#
# python-nested-lookup
#
################################################################################
PYTHON_NESTED_LOOKUP_VERSION = 0.2.25
PYTHON_NESTED_LOOKUP_SOURCE = nested-lookup-$(PYTHON_NESTED_LOOKUP_VERSION).tar.gz
PYTHON_NESTED_LOOKUP_SITE = https://files.pythonhosted.org/packages/fd/42/7d6a06916aba63124eb30d2ff638cf76054f6aeea529d47f1859c3b5ccae
PYTHON_NESTED_LOOKUP_SETUP_TYPE = setuptools
PYTHON_NESTED_LOOKUP_LICENSE = Public Domain
$(eval $(python-package))