blob: 3faee39133932b57467f58cb7a6389d9c8028ad0 [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
Andrew Geissler82c905d2020-04-13 13:39:40 -050012SRC_URI[md5sum] = "d83c624cce93e6bdfab144821b526e1d"
13SRC_URI[sha256sum] = "e3a62f0520172440ca0dcc823749319382e377f37f140a0b99ef45fecb84bfe7"
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 "