blob: d3213fa8712beac32d1bbcea149116fb6a737551 (
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
|
# Maintainer: Carl Smedstad <carl.smedstad at protonmail dot com>
pkgname=python-pytest-postgresql
_pkgname=${pkgname#python-}
pkgver=6.1.1
pkgrel=1
pkgdesc="Test your code that relies on a running PostgreSQL Database"
arch=(any)
url="https://github.com/ClearcodeHQ/pytest-postgresql"
license=(
GPL-3.0-or-later
LGPL-3.0-or-later
)
depends=(
python
python-mirakuru
python-packaging
python-port-for
python-psycopg
python-pytest
)
makedepends=(
python-build
python-installer
python-setuptools
python-wheel
)
checkdepends=(
postgresql
python-typing_extensions
)
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('94250d6786a342223c9b69402e50446073184f485cdc5ad14c064e4e5652e1d1')
build() {
cd "$_pkgname-$pkgver"
python -m build --wheel --no-isolation
}
check() {
cd "$_pkgname-$pkgver"
export PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
pytest --override-ini="addopts=" \
--deselect tests/test_executor.py::test_executor_init_with_password
}
package() {
cd "$_pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|