Add python-pyhocon package

This commit is contained in:
Calin Crisan 2019-10-06 14:38:30 +03:00
parent 2497b53f6e
commit bc1f321a26
4 changed files with 24 additions and 0 deletions

View File

@ -994,6 +994,7 @@ menu "External python modules"
source "package/python-pygame/Config.in"
source "package/python-pygments/Config.in"
source "package/python-pyhamcrest/Config.in"
source "package/python-pyhocon/Config.in"
source "package/python-pyicu/Config.in"
source "package/python-pyinotify/Config.in"
source "package/python-pyjwt/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_PYHOCON
bool "python-pyhocon"
depends on BR2_PACKAGE_PYTHON
select BR2_PACKAGE_PYTHON_PYPARSING
help
HOCON parser for Python
https://github.com/chimpler/pyhocon

View File

@ -0,0 +1 @@
sha256 94ceda402ce1718ead26fc725695a4f5a5671ce643da3c50514e049017098082 pyhocon-0.3.51.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-pyhocon
#
################################################################################
PYTHON_PYHOCON_VERSION = 0.3.51
PYTHON_PYHOCON_SOURCE = pyhocon-$(PYTHON_PYHOCON_VERSION).tar.gz
PYTHON_PYHOCON_SITE = https://files.pythonhosted.org/packages/3f/35/34e16968df0b8b65d3696d80b8add0aaffd4f0461c1ef3c0f066fdc747e8
PYTHON_PYHOCON_LICENSE = Apache-2.0
PYTHON_PYHOCON_LICENSE_FILES = LICENSE
PYTHON_PYHOCON_SETUP_TYPE = setuptools
$(eval $(python-package))