Merge pull request #11353 from kvuorine/fwknop-fixes
[feed/packages.git] / lang / python / python-cached-property / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=python-cached-property
4 PKG_VERSION:=1.5.1
5 PKG_RELEASE:=2
6
7 PYPI_NAME:=cached-property
8 PKG_HASH:=9217a59f14a5682da7c4b8829deadbfc194ac22e9908ccf7c8820234e80a1504
9
10 PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
11 PKG_LICENSE:=BSD-3-Clause
12 PKG_LICENSE_FILES:=LICENSE
13
14 include ../pypi.mk
15 include $(INCLUDE_DIR)/package.mk
16 include ../python3-package.mk
17
18 PYTHON3_PKG_SETUP_ARGS:=
19
20 define Package/python3-cached-property
21 SECTION:=lang
22 CATEGORY:=Languages
23 SUBMENU:=Python
24 TITLE:=A decorator for caching properties in classes
25 URL:=https://github.com/pydanny/cached-property
26 DEPENDS:=+python3-light
27 endef
28
29 define Package/python3-cached-property/description
30 A decorator for caching properties in classes.
31 endef
32
33 $(eval $(call Py3Package,python3-cached-property))
34 $(eval $(call BuildPackage,python3-cached-property))
35 $(eval $(call BuildPackage,python3-cached-property-src))