Commit 2b51d9dd authored by Mauro Condarelli's avatar Mauro Condarelli Committed by Thomas Petazzoni
Browse files

python-autobahn: new package



Signed-off-by: default avatarMauro Condarelli <mc5686@mclink.it>
[Thomas: remove dependency on having .py files, since it builds fine
and imports fine with .pyc files only.]
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent b3258b75
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -620,6 +620,7 @@ endif
if BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
menu "External python modules"
	source "package/python-alsaaudio/Config.in"
	source "package/python-autobahn/Config.in"
	source "package/python-backports-abc/Config.in"
	source "package/python-beautifulsoup4/Config.in"
	source "package/python-bottle/Config.in"
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_AUTOBAHN
	bool "python-autobahn"
	select BR2_PACKAGE_PYTHON_SIX # runtime
	select BR2_PACKAGE_PYTHON_TXAIO # runtime
	help
	  WebSocket client Hhh server library, WAMP real-time
	  framework.

	  https://pypi.python.org/pypi/autobahn
+3 −0
Original line number Diff line number Diff line
# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=b4b5445050749c1033b9b58f694f0c64, sha256 locally computed.
md5	b4b5445050749c1033b9b58f694f0c64  autobahn-0.12.1.tar.gz
sha256	664223879e159c88221f42d8d1ac6b8c4268d8b9316d8ab69a02761c5744cd79  autobahn-0.12.1.tar.gz
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# python-autobahn
#
################################################################################

PYTHON_AUTOBAHN_VERSION = 0.12.1
PYTHON_AUTOBAHN_SOURCE = autobahn-$(PYTHON_AUTOBAHN_VERSION).tar.gz
PYTHON_AUTOBAHN_SITE = http://pypi.python.org/packages/source/a/autobahn
PYTHON_AUTOBAHN_LICENSE = MIT
PYTHON_AUTOBAHN_LICENSE_FILES = LICENSE
PYTHON_AUTOBAHN_SETUP_TYPE = setuptools

$(eval $(python-package))