mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-21 18:25:41 +03:00
39 lines
1.1 KiB
Text
39 lines
1.1 KiB
Text
# Contributor: Justin Berthault <justin.berthault@zaclys.net>
|
|
# Maintainer: Justin Berthault <justin.berthault@zaclys.net>
|
|
pkgname=py3-mypy
|
|
pkgver=1.1.1
|
|
pkgrel=0
|
|
pkgdesc="Optional static typing for Python (PEP484)"
|
|
url="https://mypy-lang.org/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="
|
|
py3-mypy-extensions
|
|
py3-typing-extensions
|
|
"
|
|
makedepends="python3-dev py3-gpep517 py3-setuptools py3-wheel"
|
|
checkdepends="py3-pytest py3-pytest-xdist py3-lxml py3-typed-ast py3-virtualenv"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/python/mypy/archive/refs/tags/v$pkgver.tar.gz"
|
|
builddir="$srcdir/mypy-$pkgver"
|
|
options="!check" # they take forever
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
check() {
|
|
python3 -m venv --clear --without-pip --system-site-packages test-env
|
|
test-env/bin/python3 -m installer dist/mypy-*.whl
|
|
test-env/bin/python3 -m pytest
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
dist/mypy-*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
fcd50366837d005f255e2e8ecf20c843374a5d7670d714d1f8cfdaef1c6d44e37e7e84ba91fd1d49513e3aeffc8d5c0ab40ddd7bc9fced75082c9fea60d38f6a py3-mypy-1.1.1.tar.gz
|
|
"
|