diff --git a/buildroot-external/Config.in b/buildroot-external/Config.in index 2321e715..ecefc8b2 100644 --- a/buildroot-external/Config.in +++ b/buildroot-external/Config.in @@ -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" diff --git a/buildroot-external/package/python-nested-lookup/Config.in b/buildroot-external/package/python-nested-lookup/Config.in new file mode 100644 index 00000000..7fbdd338 --- /dev/null +++ b/buildroot-external/package/python-nested-lookup/Config.in @@ -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 diff --git a/buildroot-external/package/python-nested-lookup/python-nested-lookup.hash b/buildroot-external/package/python-nested-lookup/python-nested-lookup.hash new file mode 100644 index 00000000..4bcb98ba --- /dev/null +++ b/buildroot-external/package/python-nested-lookup/python-nested-lookup.hash @@ -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 diff --git a/buildroot-external/package/python-nested-lookup/python-nested-lookup.mk b/buildroot-external/package/python-nested-lookup/python-nested-lookup.mk new file mode 100644 index 00000000..803a2748 --- /dev/null +++ b/buildroot-external/package/python-nested-lookup/python-nested-lookup.mk @@ -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))