Package Details: python-confection 0.1.5-2

Git Clone URL: https://aur.archlinux.org/python-confection.git (read-only, click to copy)
Package Base: python-confection
Description: The sweetest config system for Python
Upstream URL: https://github.com/explosion/confection
Licenses: MIT
Submitter: crendel
Maintainer: envolution
Last Packager: envolution
Votes: 1
Popularity: 0.027252
First Submitted: 2023-01-22 18:26 (UTC)
Last Updated: 2024-12-23 01:14 (UTC)

Latest Comments

patina commented on 2026-03-25 03:45 (UTC)

I updated the PKGBUILD for 1.3.3

PKGBUILD
# Maintainer: envolution
# Contributor: Chris Brendel <cdbrendel@gmail.com>
# shellcheck shell=bash disable=SC2034,SC2154
pkgname=python-confection
_origpkgname=confection
pkgver=1.3.3
pkgrel=1
pkgdesc="The sweetest config system for Python"
arch=("x86_64")
url="https://github.com/explosion/confection"
license=("MIT")
depends=("python" "python-pydantic" "python-typing_extensions" "python-srsly")
makedepends=("python-setuptools")
source=("$pkgname-$pkgver.tar.gz::https://github.com/explosion/confection/archive/refs/tags/release-v$pkgver.tar.gz")
md5sums=('6ccc828a4bd40900dc06a58e002e24db')

package() {
  cd "${_origpkgname}-release-v${pkgver}" || exit 1
  python setup.py install --root="${pkgdir}/" --optimize=1
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
# vim:set ts=2 sw=2 et: