blob: 44edb8ad7eedf423c708309321006457b7d3e242 [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 Bishop316dfdd2018-06-25 12:45:53 -040012SRC_URI[md5sum] = "249e7299b9b4bced0c382343f84eb1c0"
13SRC_URI[sha256sum] = "c39efa13fbdeb4506c476c9b3babf6a718da943dab7811c206005a4a956c080c"
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 "