Commit a6f0cfa5 authored by Yegor Yefremov's avatar Yegor Yefremov Committed by Peter Korsgaard
Browse files

python-webpy: add new package



[Peter: drop redundant python|python3 dependency]
Signed-off-by: default avatarYegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent afae45bb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -527,6 +527,7 @@ menu "external python modules"
	source "package/python-tornado/Config.in"
	source "package/python-urwid/Config.in"
	source "package/python-versiontools/Config.in"
	source "package/python-webpy/Config.in"
	source "package/python-werkzeug/Config.in"
endmenu
endif
+7 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_WEBPY
	bool "python-webpy"
	help
	  web.py is a web framework for Python that is as simple as it is
	  powerful.

	  http://webpy.org/
+13 −0
Original line number Diff line number Diff line
################################################################################
#
# python-webpy
#
################################################################################

PYTHON_WEBPY_VERSION = 0.37
PYTHON_WEBPY_SITE = $(call github,webpy,webpy,webpy-$(PYTHON_WEBPY_VERSION))
PYTHON_WEBPY_SETUP_TYPE = distutils
PYTHON_WEBPY_LICENSE = Public Domain, CherryPy License
PYTHON_WEBPY_LICENSE_FILES = LICENSE.txt web/wsgiserver/LICENSE.txt

$(eval $(python-package))