aboutsummaryrefslogtreecommitdiff
path: root/dev-python/cached-property/cached-property-2.0.1.ebuild
diff options
context:
space:
mode:
authorAutumn <git@autumnfo.rest>2026-04-24 20:09:45 +0100
committerAutumn <git@autumnfo.rest>2026-04-24 20:09:45 +0100
commit822b86e1f35cce6071cd3cc23c20c4c838759092 (patch)
tree46b4b5bf68953b97b133f0259b83aeaaec5565c4 /dev-python/cached-property/cached-property-2.0.1.ebuild
parent52166c4d8087326aa2d10cd8b2e460d16a03fae5 (diff)
[dev-python/cached-property] added cached-property 2.0.1
Diffstat (limited to 'dev-python/cached-property/cached-property-2.0.1.ebuild')
-rw-r--r--dev-python/cached-property/cached-property-2.0.1.ebuild30
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/cached-property/cached-property-2.0.1.ebuild b/dev-python/cached-property/cached-property-2.0.1.ebuild
new file mode 100644
index 0000000..7b6f037
--- /dev/null
+++ b/dev-python/cached-property/cached-property-2.0.1.ebuild
@@ -0,0 +1,30 @@
+#
+# ~~~ dev-python/cached-property
+#
+# ~~~ a decorator for caching properties in classes
+#
+
+#
+# ~~~ metadata
+
+# portage info
+EAPI=8
+SLOT=0
+
+KEYWORDS="amd64"
+
+# info
+HOMEPAGE="https://github.com/pydanny/cached-property/"
+DESCRIPTION="A decorator for caching properties in classes"
+
+# package data
+SRC_URI="https://github.com/pydanny/cached-property/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+#
+# ~~~ dependencies
+
+# python setup
+DISTUTILS_USE_PEP517="setuptools"
+PYTHON_COMPAT=( python3_{8..14} )
+
+inherit distutils-r1