blob: 8cf255be5bf553e056e13bf192874784f814c46b (
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
|
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
# Contributor: Carl Smedstad <carsme@archlinux.org>
pkgname=python-polyfactory
_pkgname=${pkgname#python-}
pkgver=3.0.0
pkgrel=1
pkgdesc="Simple and powerful factories for mock data generation"
arch=(any)
url="https://github.com/litestar-org/polyfactory"
license=(MIT)
depends=(
python
python-attrs
python-faker
python-msgspec
python-pydantic
python-pydantic-core
python-pymongo
python-pytest
python-sqlalchemy
python-typing_extensions
)
makedepends=(
python-build
python-hatchling
python-installer
python-wheel
)
# checkdepends=(
# python-aiosqlite
# python-email-validator
# python-hypothesis
# python-pytest-asyncio
# )
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('d6a0591a48339b99886f382ea5f292126a6efab88e6af0153a9088364ded46fe')
_archive="$_pkgname-$pkgver"
build() {
cd "$_archive"
python -m build --wheel --no-isolation
}
# check() {
# cd "$_archive"
#
# # Deselect failing test
# pytest tests/ \
# --deselect tests/constraints/test_int_constraints.py::test_handle_constrained_int_handles_ge_with_le
# }
package() {
cd "$_archive"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md
install -Dm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE
}
|