blob: 05258c7c7ae2b0286e76fdd1f96377fc4c07b7a6 (
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
|
# Maintainer: Mohamed Amine Zghal (medaminezghal) <medaminezghal at outlook dot com>
_name=gradio
pkgname=python-${_name}
pkgver=5.23.3
pkgrel=1
pkgdesc='Python library for easily interacting with trained machine learning models.'
arch=('x86_64' 'aarch64')
url='https://github.com/gradio-app/gradio'
license=('Apache-2.0')
source=("${url}/archive/refs/tags/${_name}@${pkgver}.tar.gz")
source_x86_64=("pnpm::https://github.com/pnpm/pnpm/releases/download/v9.15.9/pnpm-linuxstatic-x64")
source_aarch64=("pnpm::https://github.com/pnpm/pnpm/releases/download/v9.15.9/pnpm-linuxstatic-arm64")
sha256sums=('5553935e3412aae01190115735b3edd363901063ceaab69b0af62e28d7604c76')
sha256sums_x86_64=('038f2a41ccdabc823d09e5697fff85f2e74d5c37591f6d58dfd33a59ffa17fc0')
sha256sums_aarch64=('2f8069dbb472b93a54d4c016b2e36968586c87f62e659dd966472a78cada5d99')
depends=('python>=3.10' 'python-aiofiles' 'python-anyio' 'python-audioop-lts' 'python-fastapi' 'python-ffmpy' 'python-groovy' 'python-gradio-client' 'python-httpx' 'python-huggingface-hub' 'python-jinja' 'python-markupsafe' 'python-numpy' 'python-orjson' 'python-packaging' 'python-pandas' 'python-pillow' 'python-pydantic' 'python-python-multipart' 'python-pydub' 'python-pyyaml' 'python-ruff' 'python-safehttpx' 'python-semantic-version' 'python-starlette' 'python-tomlkit' 'python-typer' 'python-typing_extensions' 'python-urllib3' 'uvicorn')
makedepends=('python-hatchling' 'python-hatch-requirements-txt' 'python-hatch-fancy-pypi-readme' 'python-build' 'python-installer' 'python-wheel')
checkdepends=('ipython' 'python-altair' 'python-boto3' 'python-fastapi' 'python-matplotlib' 'python-httpx' 'python-huggingface-hub' 'python-hypothesis' 'python-polars' 'python-pydantic' 'python-email-validator' 'python-pytest' 'python-pytest-asyncio' 'python-pytest-cov' 'python-pytest-rerunfailures' 'python-respx' 'python-scikit-image' 'python-pytorch' 'python-tqdm' 'python-transformers' 'python-vega_datasets' 'python-diffusers')
optdepends=('python-authlib: oauth' 'python-itsdangerous: oauth')
prepare(){
chmod +x pnpm
ln -sf "${srcdir}"/pnpm "${srcdir}"/${_name}-${_name}-${pkgver}/pnpm
}
build() {
cd "${srcdir}"/${_name}-${_name}-${pkgver}
python scripts/generate_theme.py
env PATH="${srcdir}"/${_name}-${_name}-${pkgver}:$PATH ./pnpm i --frozen-lockfile --ignore-scripts
env PATH="${srcdir}"/${_name}-${_name}-${pkgver}:$PATH ./pnpm build
python -c "import gradio"
python -m build --wheel --no-isolation
}
check() {
local pytest_options=(
--override-ini="addopts="
-vv
-p no:flaky
# Need HuggingFace token
--deselect test/test_buttons.py::TestOAuthButtons::test_login_button_warns_when_not_on_spaces
--deselect test/test_external.py::TestLoadInterface::test_numerical_to_label_space
--deselect test/test_external.py::TestLoadInterface::test_private_space
--deselect test/test_external.py::TestLoadInterface::test_multiple_spaces_one_private
--deselect test/test_external.py::TestLoadInterface::test_loading_files_via_proxy_works
--deselect test/test_external.py::TestLoadInterface::test_private_space_v4_sse_v1
--deselect test/test_external.py::TestLoadInterfaceWithExamples::test_interface_with_examples
--deselect test/test_external.py::TestLoadInterface::test_image_classification_model
--deselect test/test_external.py::TestLoadInterface::test_translation_model
--deselect test/test_external.py::TestLoadInterface::test_visual_question_answering
--deselect test/test_external.py::TestLoadInterface::test_sentiment_model
--deselect test/test_external.py::TestLoadInterface::test_image_to_text
--deselect test/test_external.py::TestLoadInterface::test_speech_recognition_model
# Need tf_keras package
--deselect test/test_pipelines.py::test_text_to_text_model_from_pipeline
--deselect test/test_pipelines.py::test_interface_in_blocks
--deselect test/test_pipelines.py::test_transformers_load_from_pipeline
# Need custom tunnel
--deselect test/test_tunneling.py::test_setup_custom_tunnel
)
cd "${srcdir}"/${_name}-${_name}-${pkgver}
ulimit -n 8192
python -m venv --system-site-packages test-env
test-env/bin/python -m installer dist/*.whl
test-env/bin/pip install -U gradio-pdf # Prevent cercular dependencies
PATH="${srcdir}/${_name}-${_name}-${pkgver}/test-env/bin:$PATH" test-env/bin/python -m pytest "${pytest_options[@]}" test
}
package() {
cd "${srcdir}"/${_name}-${_name}-${pkgver}
python -m installer --destdir="$pkgdir" dist/*.whl
}
|