python-engineio: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Yegor Yefremov 2016-07-01 12:06:18 +02:00 committed by Thomas Petazzoni
parent e1452c5d4f
commit a6a675c0ea
4 changed files with 28 additions and 0 deletions

View file

@ -671,6 +671,7 @@ menu "External python modules"
source "package/python-dominate/Config.in"
source "package/python-dpkt/Config.in"
source "package/python-ecdsa/Config.in"
source "package/python-engineio/Config.in"
source "package/python-enum/Config.in"
source "package/python-enum34/Config.in"
source "package/python-flask/Config.in"

View file

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_ENGINEIO
bool "python-engineio"
select BR2_PACKAGE_PYTHON_SIX # runtime
select BR2_PACKAGE_PYTHON_ZLIB if BR2_PACKAGE_PYTHON
select BR2_PACKAGE_PYTHON3_ZLIB if BR2_PACKAGE_PYTHON3
help
Engine.IO server.
http://github.com/miguelgrinberg/python-engineio/

View file

@ -0,0 +1,4 @@
# md5 from https://pypi.python.org/pypi/python-engineio/json
md5 9b0075dbbb25d7a302eba99dd9ba4af8 python-engineio-0.9.2.tar.gz
# sha256 calculated by scanpypi
sha256 c53282415ed9bc3cb4e7beafb2a1ce5c369af95dcf8f968061e5bc7572b60867 python-engineio-0.9.2.tar.gz

View file

@ -0,0 +1,14 @@
################################################################################
#
# python-engineio
#
################################################################################
PYTHON_ENGINEIO_VERSION = 0.9.2
PYTHON_ENGINEIO_SOURCE = python-engineio-$(PYTHON_ENGINEIO_VERSION).tar.gz
PYTHON_ENGINEIO_SITE = https://pypi.python.org/packages/c3/8f/0e066fc7a7029893b96b1d68a0cd5e75f6410f154fa4079b2be4991f5ae0
PYTHON_ENGINEIO_SETUP_TYPE = setuptools
PYTHON_ENGINEIO_LICENSE = MIT
PYTHON_ENGINEIO_LICENSE_FILES = LICENSE
$(eval $(python-package))