blob: 83e689144098d01dce9973f2ca0d8e7b837df4d6 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Maintainer: Jakub Klinkovský <lahwaacz at archlinux dot org>
# Contributor: Butui Hu <hot123tea123@gmail.com>
_name=ydata-profiling
pkgname=python-ydata-profiling
pkgver=4.16.1
pkgrel=1
pkgdesc='Create HTML profiling reports from pandas DataFrame objects'
arch=(any)
url='https://github.com/ydataai/ydata-profiling'
license=(MIT)
depends=(
ipython
python
python-dacite
python-dateutil
python-htmlmin
python-imagehash
python-ipywidgets
python-jinja
python-matplotlib
python-markupsafe
python-multimethod
python-networkx
python-numba
python-numpy
python-packaging
python-pandas
python-phik
python-pillow
python-pydantic
python-requests
python-seaborn
python-scipy
python-statsmodels
python-tangled-up-in-unicode
python-tqdm
python-typeguard
python-visions
python-wordcloud
python-yaml
)
conflicts=(python-pandas-profiling)
replaces=(python-pandas-profiling)
makedepends=(
python-build
python-installer
python-setuptools
python-setuptools-scm
python-wheel
)
source=($_name-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz)
b2sums=('a4dce447c17e3318ff0371e43e20f38b5d8c7a5c81d774075d70710ae5e1f9d7598b1133bd4f97b80c3ea451bf15a033346bb89bafb66a1ac63366e8934ea6da')
prepare() {
# fix version fallback (the git snapshot does not contain the VERSION file)
sed -i 's|version = "0.0.dev0"|version = "'$pkgver'"|' $_name-$pkgver/setup.py
}
build() {
cd $_name-$pkgver
python -m build --wheel --no-isolation
}
package() {
cd $_name-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
install -vDm 644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
}
|