blob: caf4340b2541af72c8c5cc92d6e0b8779b9736b6 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "Python decorator utilities"
2DESCRIPTION = "\
3The aim of the decorator module it to simplify the usage of decorators \
4for the average programmer, and to popularize decorators by showing \
5various non-trivial examples. Of course, as all techniques, decorators \
6can be abused and you should not try to solve every problem with a \
7decorator, just because you can."
8
Brad Bishop2d39a062019-10-28 08:33:36 -04009LICENSE = "BSD-2-Clause"
Brad Bishopc342db32019-05-15 21:57:59 -040010LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=be2fd2007972bf96c08af3293d728b22"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050011
Brad Bishopc342db32019-05-15 21:57:59 -040012SRC_URI[md5sum] = "a565a98581c0d110bc247323e89df9b1"
13SRC_URI[sha256sum] = "86156361c50488b84a3f148056ea716ca587df2f0de1d34750d35c21312725de"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050014
15inherit pypi
Patrick Williamsddad1a12017-02-23 20:36:32 -060016
17RDEPENDS_${PN} += "\
18 ${PYTHON_PN}-stringold \
19 "