package/python-munch: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Yegor Yefremov 2022-12-09 11:27:42 +01:00 committed by Yann E. MORIN
parent 8de04b2cb6
commit 002a5f7ced
4 changed files with 28 additions and 0 deletions

View File

@ -1128,6 +1128,7 @@ menu "External python modules"
source "package/python-msgfy/Config.in"
source "package/python-msgpack/Config.in"
source "package/python-multidict/Config.in"
source "package/python-munch/Config.in"
source "package/python-mutagen/Config.in"
source "package/python-mwclient/Config.in"
source "package/python-mwscrape/Config.in"

View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_PYTHON_MUNCH
bool "python-munch"
help
Munch is a dictionary that supports attribute-style access,
a la JavaScript.
https://github.com/Infinidat/munch

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/munch/json
md5 ed84c3718416c8d4d03d0a6ef46e8e0c munch-2.5.0.tar.gz
sha256 2d735f6f24d4dba3417fa448cae40c6e896ec1fdab6cdb5e6510999758a4dbd2 munch-2.5.0.tar.gz
# Locally computed sha256 checksums
sha256 57ca95c92059c8380625192462979bd32994aae3fcdf902ff6eb1e467eeb0469 LICENSE.txt

View File

@ -0,0 +1,15 @@
################################################################################
#
# python-munch
#
################################################################################
PYTHON_MUNCH_VERSION = 2.5.0
PYTHON_MUNCH_SOURCE = munch-$(PYTHON_MUNCH_VERSION).tar.gz
PYTHON_MUNCH_SITE = https://files.pythonhosted.org/packages/43/a1/ec48010724eedfe2add68eb7592a0d238590e14e08b95a4ffb3c7b2f0808
PYTHON_MUNCH_SETUP_TYPE = setuptools
PYTHON_MUNCH_LICENSE = MIT
PYTHON_MUNCH_LICENSE_FILES = LICENSE.txt
PYTHON_MUNCH_DEPENDENCIES = host-python-pbr
$(eval $(python-package))