blob: 859f97269ccb7a88f9c7f96fa55653c658b42f93 [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
9LICENSE = "BSD"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=893f896413826096ce5270c700a498fd"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050011
Brad Bishopd7bf8c12018-02-25 22:55:05 -050012SRC_URI[md5sum] = "a0f7f4fe00ae2dde93494d90c192cf8c"
13SRC_URI[sha256sum] = "7cb64d38cb8002971710c8899fbdfb859a23a364b7c99dab19d1f719c2ba16b5"
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 "