blob: 3a0ff0cb8f3ae2f03ad155771201f69f825e1a57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: WinÃcius Cota <winicius.cota@gmail.com>
pkgname=python-classproperties
pkgver=0.2.0
pkgrel=1
pkgdesc="Property for class methods."
arch=('any')
url="https://github.com/dpep/pyclassproperties"
license=('MIT')
depends=('python')
makedepends=('python-build' 'python-installer' 'python-wheel' 'python-setuptools')
source=("https://files.pythonhosted.org/packages/ee/cf/a540ef6bbf6df3192dcb6549a8c84034f5937c5393cefce49f7dec29fead/classproperties-${pkgver}.tar.gz")
sha256sums=('a77e96a666898ecd697dd7f331d9ab1e38383c1edef809d953bb5f8a3ea67c2a')
build() {
cd "classproperties-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "classproperties-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|