# Contributor: Leo <thinkabit.ukim@gmail.com>
# Contributor: Michał Polański <michal@polanski.me>
# Maintainer: Michał Polański <michal@polanski.me>
pkgname=poetry
pkgver=2.0.1
pkgrel=0
pkgdesc="Python3 dependency management and packaging system"
url="https://python-poetry.org/"
license="MIT"
arch="noarch"
depends="
	py3-poetry-core
	py3-build
	py3-cachecontrol
	py3-cleo
	py3-dulwich
	py3-fastjsonschema
	py3-installer
	py3-keyring
	py3-packaging
	py3-pkginfo
	py3-platformdirs
	py3-pyproject-hooks
	py3-requests
	py3-requests-toolbelt
	py3-shellingham
	py3-tomlkit
	py3-trove-classifiers
	py3-virtualenv
	"
makedepends="py3-gpep517 py3-installer"
checkdepends="python3-dev py3-pytest py3-pytest-mock py3-pytest-xdist py3-deepdiff py3-httpretty"
subpackages="$pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://github.com/python-poetry/poetry/archive/$pkgver.tar.gz"
options="!check" # TODO: enable tests

prepare() {
	default_prepare

	# flatdict module is not packaged in aports
	rm tests/config/test_config.py
}

build() {
	gpep517 build-wheel \
		--wheel-dir .dist \
		--output-fd 3 3>&1 >&2
}

check() {
	python3 -m venv --clear --without-pip --system-site-packages .testenv
	.testenv/bin/python3 -m installer .dist/*.whl
	.testenv/bin/python3 -m pytest
}

package() {
	python3 -m installer -d "$pkgdir" \
		.dist/*.whl
}

sha512sums="
604f60a13ae90b631b7b3c82e6cd73c650787c2d158aa424d85078782c3bfe17a126daf6d518d2114eca24a776f08a4541f00c41e41d2ab9da73bedc9269cd33  poetry-2.0.1.tar.gz
"
