python-falcon: new package

An unladen web framework for building APIs and app backends.

http://falconframework.org

Signed-off-by: Grzegorz Blach <grzegorz@blach.pl>
[Thomas: add missing _LICENSE variable.]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Grzegorz Blach 2018-08-28 12:16:18 +02:00 committed by Thomas Petazzoni
parent ab7e571240
commit 3ea57b712d
5 changed files with 30 additions and 0 deletions

View file

@ -877,6 +877,7 @@ F: package/libwebsock/
F: package/sofia-sip/
N: Grzegorz Blach <grzegorz@blach.pl>
F: package/python-falcon/
F: package/python-mimeparse/
N: Guillaume Gardet <guillaume.gardet@oliseo.fr>

View file

@ -820,6 +820,7 @@ menu "External python modules"
source "package/python-engineio/Config.in"
source "package/python-enum/Config.in"
source "package/python-enum34/Config.in"
source "package/python-falcon/Config.in"
source "package/python-flask/Config.in"
source "package/python-flask-cors/Config.in"
source "package/python-flask-babel/Config.in"

View file

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_FALCON
bool "python-falcon"
select BR2_PACKAGE_PYTHON_SIX # runtime
select BR2_PACKAGE_PYTHON_MIMEPARSE # runtime
help
An unladen web framework for building APIs and app
backends.
http://falconframework.org

View file

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/falcon/json
md5 3cb880665ee2cd52143cf8a7790a35e6 falcon-1.4.1.tar.gz
sha256 3981f609c0358a9fcdb25b0e7fab3d9e23019356fb429c635ce4133135ae1bc4 falcon-1.4.1.tar.gz
# Locally computed sha256 checksums
sha256 e9e7f1a7ba764f042e56afce6f3563c2be9c4fffbb1404b20f8050ae051f577c LICENSE

View file

@ -0,0 +1,14 @@
################################################################################
#
# python-falcon
#
################################################################################
PYTHON_FALCON_VERSION = 1.4.1
PYTHON_FALCON_SOURCE = falcon-$(PYTHON_FALCON_VERSION).tar.gz
PYTHON_FALCON_SITE = https://files.pythonhosted.org/packages/2f/e6/5045da9df509b9259037f065d15608930fd6c997ee930ad230f9fbfecf15
PYTHON_FALCON_SETUP_TYPE = setuptools
PYTHON_FALCON_LICENSE = Apache-2.0
PYTHON_FALCON_LICENSE_FILES = LICENSE
$(eval $(python-package))