blob: 48c38d22e16b7317f68854fed275f802f6979ddd (
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
|
# Maintainer: Daniel Bershatsky <bepshatsky@yandex.ru>
# Maintainer: @xiota
# Contributor: Alexander F. Rødseth <xyproto@archlinux.org>
_module="diffusers"
_pkgname="python-$_module"
pkgname="$_pkgname"
pkgver=0.30.3
pkgrel=1
pkgdesc='Pretrained diffusion models for image and audio generation in PyTorch'
url='https://github.com/huggingface/diffusers'
license=('Apache-2.0')
arch=('any')
groups=('huggingface')
depends=(
'python-filelock'
'python-huggingface-hub'
'python-numpy'
'python-pillow'
'python-regex'
'python-requests'
'python-safetensors'
)
optdepends=(
'python-tensorflow: TensorFlow support'
'python-pytorch: PyTorch support'
'python-flax: JAX/FLAX support'
)
makedepends=(
'python-build'
'python-installer'
'python-setuptools'
'python-wheel'
)
_pkgsrc="$_module-$pkgver"
_pkgext="tar.gz"
source=("$_pkgsrc.$_pkgext"::"$url/archive/refs/tags/v$pkgver.$_pkgext")
sha256sums=('5ff41f57178a5ad54fdff89b3b5b053fd66c740d904d076acd9599be5d04fb1c')
build() {
cd "$_pkgsrc"
python -m build --no-isolation --wheel
}
check() {
PYHONPATH=$srcdir/$_pkgsrc/src python -c 'import diffusers'
}
package() {
cd "$_pkgsrc"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|