blob: c04a4e0c4f48ce0368942afc39d187d622221f04 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001SUMMARY = "The Swiss Army knife of Python web development"
2DESCRIPTION = "\
3Werkzeug started as simple collection of various utilities for WSGI \
4applications and has become one of the most advanced WSGI utility modules. \
5It includes a powerful debugger, full featured request and response objects, \
6HTTP utilities to handle entity tags, cache control headers, HTTP dates, \
7cookie handling, file uploads, a powerful URL routing system and a bunch \
8of community contributed addon modules."
9HOMEPAGE = "http://werkzeug.pocoo.org/"
10LICENSE = "BSD"
11LIC_FILES_CHKSUM = "file://LICENSE;md5=ed9a0b7c0254616d72dadb98b293ef1b"
12
13SRC_URI[md5sum] = "6d20b5be2d245be4ac7706cc390d130c"
14SRC_URI[sha256sum] = "c3fd7a7d41976d9f44db327260e263132466836cef6f91512889ed60ad26557c"
15
16PYPI_PACKAGE = "Werkzeug"
17
18CLEANBROKEN = "1"
19
20PACKAGES =+ "${PN}-tests"
21FILES_${PN}-tests+= " \
22 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/test* \
23 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/__pycache__/test* \
24 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/contrib/test* \
25 ${PYTHON_SITEPACKAGES_DIR}/werkzeug/contrib/__pycache__/test* \
26"
27
28RDEPENDS_${PN} += " \
29 ${PYTHON_PN}-datetime \
30 ${PYTHON_PN}-difflib \
31 ${PYTHON_PN}-email \
32 ${PYTHON_PN}-html \
33 ${PYTHON_PN}-io \
34 ${PYTHON_PN}-json \
35 ${PYTHON_PN}-netclient \
36 ${PYTHON_PN}-netserver \
37 ${PYTHON_PN}-numbers \
38 ${PYTHON_PN}-pkgutil \
39 ${PYTHON_PN}-pprint \
40 ${PYTHON_PN}-threading \
41 ${PYTHON_PN}-unixadmin \
42"
43
44RDEPENDS_${PN}-tests = " \
45 ${PN} \
46 ${PYTHON_PN}-unittest \
47"