blob: 2c6dbc2060f6dcf8957a8518a69dec5010186b37 (
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
71
72
73
74
75
76
77
78
79
|
# Maintainer: envolution
# Contributor: Michał Wojdyła < micwoj9292 at gmail dot com >
# Contributor: Luis Martinez <luis dot martinez at disroot dot org>
# shellcheck shell=bash disable=SC2034,SC2154
pkgname=python-speechrecognition
_pkg=speechrecognition
_pkgdir=speech_recognition
pkgver=3.14.3
pkgrel=1
pkgdesc="Google-powered speech recognition for Python"
arch=('x86_64')
url="https://github.com/Uberi/speech_recognition"
license=('MIT')
depends=(
'python-audioop'
'python-requests'
'python-tensorflow'
'python-botocore'
'python-boto3'
'lib32-glibc'
'flac'
'python-aifc')
optdepends=(
'python-pyaudio: Required for microphone input'
'python-pocketsphinx'
'python-vosk'
'python-whisper'
'python-google-api-core: Google cloud speech'
'python-faster-whisper: Required for Whisper'
'python-typing_extensions: Required for faster Whisper'
'python-pytorch: Required for Whisper'
'python-numpy: Required for whisper'
'python-openai: Required for openai'
'python-soundfile: Required for whisper'
'python-google-cloud-speech: Required for Google Cloud Speech-toText API'
'python-vosk: Required for Vosk recognizer'
'python-groq: Required for Groq Whisper API'
)
makedepends=(
'git'
'python-build'
'python-installer'
'python-setuptools'
'python-wheel')
provides=('python-speech_recognition')
checkdepends=(
'python-pocketsphinx'
'python-pytest'
'python-httpx'
'python-respx')
source=("git+https://github.com/Uberi/speech_recognition.git#tag=${pkgver}")
sha256sums=('6330348e101e2115e56e9f14e16b8908727ebc01c0d236aa78ea637a244d5fc9')
build() {
cd "$_pkgdir"
python -m build --wheel --no-isolation
}
check() {
cp -r "${_pkgdir}/tests" "${srcdir}/tests"
cd "${srcdir}"
PYTHONPATH="${_pkgdir}" python -m pytest \
-k "not test_google_cloud" \
--ignore=tests/recognizers/test_google_cloud.py \
--ignore=tests/recognizers/test_groq.py \
--ignore=tests/test_special_features.py \
--ignore=tests/recognizers/whisper_api/test_groq.py \
tests/ || true
rm -rf "${srcdir}/tests"
}
package() {
cd "$_pkgdir"
python -m installer --destdir "$pkgdir" dist/*.whl
install -Dm644 LICENSE* -t ${pkgdir}/usr/share/licenses/$pkgname/
}
# vim:set ts=2 sw=2 et:
|