blob: 53c1fd55c0ac2b2cce1bc0ea865c47d2d2bf66d3 (
plain)
1 # Description: A decorator for caching properties in classes
2 # URL: https://pypi.org/project/cached-property/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: python3-setuptools
5
6 name=python3-cached-property
7 version=1.5.1
8 release=1
9 source=(https://files.pythonhosted.org/packages/57/8e/0698e10350a57d46b3bcfe8eff1d4181642fd1724073336079cb13c5cf7f/cached-property-$version.tar.gz)
10
11 build() {
12 cd cached-property-$version
13 python3 setup.py build
14 python3 setup.py install --root=$PKG
15 }
|