package/python-nested-dict: new package

Python dictionary with automatic and arbitrary levels of nestedness.

Signed-off-by: Adam Duskett <aduskett@greenlots.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Adam Duskett 2019-11-25 11:43:17 -08:00 committed by Thomas Petazzoni
parent a57aceb472
commit 3a084d7e28
5 changed files with 28 additions and 0 deletions

View File

@ -65,6 +65,7 @@ F: package/python-flask-sqlalchemy/
F: package/python-gitdb2/
F: package/python-lockfile/
F: package/python-mutagen/
F: package/python-nested-dict/
F: package/python-pbr/
F: package/python-pip/
F: package/python-psycopg2/

View File

@ -1009,6 +1009,7 @@ menu "External python modules"
source "package/python-mwclient/Config.in"
source "package/python-mwscrape/Config.in"
source "package/python-mwscrape2slob/Config.in"
source "package/python-nested-dict/Config.in"
source "package/python-netaddr/Config.in"
source "package/python-netifaces/Config.in"
source "package/python-networkmanager/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_NESTED_DICT
bool "python-nested-dict"
help
Python dictionary with automatic and arbitrary levels of
nestedness.
http://pypi.python.org/pypi/nested_dict

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/nested-dict/json
md5 e08e2e8de6d002f9ddda4eea5a4528c2 nested_dict-1.61.tar.gz
sha256 de0fb5bac82ba7bcc23736f09373f18628ea57f92bbaa13480d23f261c41e771 nested_dict-1.61.tar.gz
# Locally computed sha256 checksums
sha256 c84eb6b667b91fd9b8991f500c168354eb51af5b2dd970d8ee51ce336d9aeed1 LICENSE.TXT

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-nested-dict
#
################################################################################
PYTHON_NESTED_DICT_VERSION = 1.61
PYTHON_NESTED_DICT_SOURCE = nested_dict-$(PYTHON_NESTED_DICT_VERSION).tar.gz
PYTHON_NESTED_DICT_SITE = https://files.pythonhosted.org/packages/42/d0/3b27fa65b16a2e44d793af59929fcdb3bb84b4664462ff2830105dfd9b7d
PYTHON_NESTED_DICT_SETUP_TYPE = setuptools
PYTHON_NESTED_DICT_LICENSE = MIT
PYTHON_NESTED_DICT_LICENSE_FILES = LICENSE.TXT
$(eval $(python-package))