blob: 36226bc7d57e4a44dc5275c4fb6b2f2cf853d795 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Yann Büchau <nobodyinperson@posteo.de>
pkgname=hledger-utils
pkgver=1.13.2
pkgrel=2
pkgdesc='Utilities extending the hledger plaintextaccounting tool'
arch=(any)
url="https://gitlab.com/nobodyinperson/$pkgname"
license=(GPL)
_pydeps=(asteval
cycler
# drawilleplot
matplotlib
numpy
pandas
psutil
rich
scipy)
depends=(hledger
python
"${_pydeps[@]/#/python-}")
makedepends=(python-{build,installer,wheel}
python-setuptools-scm)
_archive="$pkgname-$pkgver"
source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$_archive.tar.gz")
sha256sums=('646bae1537383f1c5946323beca8be48616dcadd641acce36f1bbc95107ad548')
build () {
cd "$_archive"
python -m build -wn
}
package () {
cd "$_archive"
python -m installer -d "$pkgdir" dist/*.whl
local _pyver=$(python --version | cut -d " " -f2)
rm -rf "$pkgdir/usr/lib/python${_pyver%.*}/site-packages/tests"
}
|