blob: a95d298aaa9f24876e5c26b779bb847e8503954f [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001include $(TOPDIR)/rules.mk
2
3PKG_NAME:=python-cached-property
4PKG_VERSION:=1.5.2
5PKG_RELEASE:=2
6
7PYPI_NAME:=cached-property
8PKG_HASH:=9fa5755838eecbb2d234c3aa390bd80fbd3ac6b6869109bfc1b499f7bd89a130
9
10PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
11PKG_LICENSE:=BSD-3-Clause
12PKG_LICENSE_FILES:=LICENSE
13
14include ../pypi.mk
15include $(INCLUDE_DIR)/package.mk
16include ../python3-package.mk
17
18define Package/python3-cached-property
19 SECTION:=lang
20 CATEGORY:=Languages
21 SUBMENU:=Python
22 TITLE:=A decorator for caching properties in classes
23 URL:=https://github.com/pydanny/cached-property
24 DEPENDS:=+python3-light
25endef
26
27define Package/python3-cached-property/description
28 A decorator for caching properties in classes.
29endef
30
31$(eval $(call Py3Package,python3-cached-property))
32$(eval $(call BuildPackage,python3-cached-property))
33$(eval $(call BuildPackage,python3-cached-property-src))