blob: 6ec0d68f1350e5e0b89ed1f8921e0e2cc4e768a1 (
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
|
# Maintainer: SZanko szanko at protonmail dot com
pkgname=python-benedict
pkgver=0.23.2
pkgrel=2
pkgdesc="dict subclass with keylist/keypath support, I/O shortcuts (base64, csv, json, pickle, plist, query-string, toml, xml, yaml) and many utilities."
arch=('any')
url="https://github.com/fabiocaccamo/python-benedict"
license=('MIT')
depends=(
'python'
'python-ftfy'
# 'python-mailchecker'
'python-phonenumbers'
'python-dateutil'
'python-fsutil'
'python-slugify'
'python-pyaml'
'python-requests'
'python-six'
'python-toml'
'python-xmltodict'
)
source=("${url}/archive/${pkgver}.tar.gz")
sha256sums=('cf4d3cf1a89cb867469c4028ebbccb8f1592532f0b8f710c0b57d72497eb8ba8')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
python setup.py build
}
package() {
cd "$srcdir/$pkgname-$pkgver"
python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
install -Dm644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
|