# Maintainer: Chih-Hsuan Yen pkgname=netron-cli pkgver=7.3.7 pkgrel=1 pkgdesc='Visualizer for neural network, deep learning, and machine learning models (CLI only)' url='https://netron.app/' arch=(any) license=(MIT) depends=(python) makedepends=(python-setuptools python-build python-installer python-wheel) optdepends=( 'python-onnx: serializing ONNX models' 'python-pytorch: serializing PyTorch models' ) source=(https://github.com/lutzroeder/netron/archive/v$pkgver/netron-$pkgver.tar.gz) sha256sums=('599076907852ea82ea646ae7e651b5ee4bc7a4836682a7087254522b4f9d5ec7') build() { cd netron-$pkgver python package.py build version python -m build --wheel --no-isolation --outdir dist/pypi dist/pypi } package() { cd netron-$pkgver python -m installer --destdir="$pkgdir" dist/pypi/*.whl install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname }