17 lines
571 B
Plaintext
17 lines
571 B
Plaintext
# Description: Modern, extensible Python project management
|
|
# URL: https://github.com/pypa/hatch
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-build python3-pathspec python3-pluggy
|
|
|
|
name=python3-hatchling
|
|
version=1.4.1
|
|
release=1
|
|
source=(https://github.com/ofek/hatch/archive/hatchling-v$version/hatchling-$version.tar.gz)
|
|
|
|
build() {
|
|
cd hatch-hatchling-v$version
|
|
|
|
/usr/bin/python3 -m build backend --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/pip3 install --isolate --root=$PKG --ignore-installed --no-deps backend/dist/*.whl
|
|
}
|