From 9087b46e38f03e65cb8ab7012ffae74861ed7be6 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Sat, 27 Dec 2025 04:43:43 -0500 Subject: [PATCH] new blfs: dev-python/hatchling-1.27.0 --- dev-python/hatchling-1.27.0.PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 dev-python/hatchling-1.27.0.PKGBUILD diff --git a/dev-python/hatchling-1.27.0.PKGBUILD b/dev-python/hatchling-1.27.0.PKGBUILD new file mode 100644 index 0000000..77bd80f --- /dev/null +++ b/dev-python/hatchling-1.27.0.PKGBUILD @@ -0,0 +1,25 @@ +pkgname=hatchling +pkgver=1.27.0 +pkgdesc="Extensible, standards compliant build backend used by Hatch" +arch=('any') +homepage="https://github.com/pypa/hatch/tree/master/backend" +license=('MIT') +sources=("${pkgname}-${pkgver}.tar.gz") +urls=("https://files.pythonhosted.org/packages/source/${pkgname:0:1}/${pkgname}/${sources[0]}") +md5sums=("6ffb3087c9b6a9ffbfc1bb394f7ed1a8") + +src_prepare() { + tar -xf ${distdir}/${sources[0]} --strip-components=1 +} + +src_build() { + python -m build --wheel --no-isolation +} + +# check need pytest, but hatchling is needed by pytest + +src_install() { + python -m installer --destdir="$pkgdir" dist/*.whl + install -vDm644 -t "$pkgdir/usr/share/doc/$pkgname" README.md + install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" LICENSE.txt +}