blob: 0520517418cd1ab109a09de32055aff0fc5c5fdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
MAKEDEPS="python python-editables python-pathspec"
PKG_VER=1.11.1
SOURCE=https://files.pythonhosted.org/packages/source/h/hatchling/hatchling-$PKG_VER.tar.gz
MAKEDEPS="python"
DESC="Modern, extensible Python build backend"
build() {
python -m build --no-isolation --wheel
}
package () {
python -m installer -d "$PKG_DEST" dist/hatchling-$PKG_VER-py3-none-any.whl
}
|