package/python-entrypoints: new package

Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Asaf Kahlon 2019-10-21 16:40:24 +03:00 committed by Peter Korsgaard
parent c93ddf0eaf
commit 55567e56d6
4 changed files with 26 additions and 0 deletions

View File

@ -931,6 +931,7 @@ menu "External python modules"
source "package/python-dpkt/Config.in"
source "package/python-ecdsa/Config.in"
source "package/python-engineio/Config.in"
source "package/python-entrypoints/Config.in"
source "package/python-enum/Config.in"
source "package/python-enum34/Config.in"
source "package/python-esptool/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_PYTHON_ENTRYPOINTS
bool "python-entrypoints"
help
Discover and load entry points from installed packages.
https://github.com/takluyver/entrypoints

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/entrypoints/json
md5 c5c61ea2e46a0c50ea08f4af7955a0b1 entrypoints-0.3.tar.gz
sha256 c70dd71abe5a8c85e55e12c19bd91ccfeec11a6e99044204511f9ed547d48451 entrypoints-0.3.tar.gz
# Locally computed sha256 checksums
sha256 de5fcd7349cdf399b0707a2a024833c4704743650133c72d6f0ff7561a03a848 LICENSE

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-entrypoints
#
################################################################################
PYTHON_ENTRYPOINTS_VERSION = 0.3
PYTHON_ENTRYPOINTS_SOURCE = entrypoints-$(PYTHON_ENTRYPOINTS_VERSION).tar.gz
PYTHON_ENTRYPOINTS_SITE = https://files.pythonhosted.org/packages/b4/ef/063484f1f9ba3081e920ec9972c96664e2edb9fdc3d8669b0e3b8fc0ad7c
PYTHON_ENTRYPOINTS_SETUP_TYPE = distutils
PYTHON_ENTRYPOINTS_LICENSE = MIT
PYTHON_ENTRYPOINTS_LICENSE_FILES = LICENSE
$(eval $(python-package))