summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--package/Config.in1
-rw-r--r--package/python-werkzeug/Config.in7
-rw-r--r--package/python-werkzeug/python-werkzeug.hash3
-rw-r--r--package/python-werkzeug/python-werkzeug.mk14
4 files changed, 25 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index 28cf70323..ace08e0d1 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -523,6 +523,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-werkzeug/Config.in"
endmenu
endif
source "package/ruby/Config.in"
diff --git a/package/python-werkzeug/Config.in b/package/python-werkzeug/Config.in
new file mode 100644
index 000000000..2097d6e34
--- /dev/null
+++ b/package/python-werkzeug/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_PYTHON_WERKZEUG
+ bool "python-werkzeug"
+ help
+ Werkzeug is a WSGI utility library for Python. It's widely
+ used and BSD licensed.
+
+ http://werkzeug.pocoo.org/
diff --git a/package/python-werkzeug/python-werkzeug.hash b/package/python-werkzeug/python-werkzeug.hash
new file mode 100644
index 000000000..38f622aea
--- /dev/null
+++ b/package/python-werkzeug/python-werkzeug.hash
@@ -0,0 +1,3 @@
+# md5 from https://pypi.python.org/pypi?:action=show_md5&digest=f7afcadc03b0f2267bdc156c34586043, sha256 locally computed
+md5 f7afcadc03b0f2267bdc156c34586043 Werkzeug-0.9.6.tar.gz
+sha256 7f11e7e2e73eb22677cac1b11113eb6106f66cedef13d140e83cf6563c90b79c Werkzeug-0.9.6.tar.gz
diff --git a/package/python-werkzeug/python-werkzeug.mk b/package/python-werkzeug/python-werkzeug.mk
new file mode 100644
index 000000000..8902d1709
--- /dev/null
+++ b/package/python-werkzeug/python-werkzeug.mk
@@ -0,0 +1,14 @@
+################################################################################
+#
+# python-werkzeug
+#
+################################################################################
+
+PYTHON_WERKZEUG_VERSION = 0.9.6
+PYTHON_WERKZEUG_SOURCE = Werkzeug-$(PYTHON_WERKZEUG_VERSION).tar.gz
+PYTHON_WERKZEUG_SITE = http://pypi.python.org/packages/source/W/Werkzeug
+PYTHON_WERKZEUG_SETUP_TYPE = setuptools
+PYTHON_WERKZEUG_LICENSE = BSD-3c
+PYTHON_WERKZEUG_LICENSE_FILES = LICENSE
+
+$(eval $(python-package))