# Maintainer: Sophie Tauchert _pkgname=injector pkgname=python-${_pkgname} pkgver=0.18.3 pkgrel=1 pkgdesc="Python dependency injection framework, inspired by Guice." arch=('any') url="http://github.com/alecthomas/injector" license=('BSD') depends=('python' 'python-typing_extensions') makedepends=('python-setuptools') provides=() source=("https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz" "https://raw.githubusercontent.com/alecthomas/injector/${pkgver}/COPYING") sha256sums=('b88f7e1433c288b8986568c6a73cc45a86659e18fae19b893c1d89572b5d84b4' '567278bc23fa55244f132af7164aa684940c75fa35b19c395899422cb92613ba') build() { cd "${_pkgname}-$pkgver" python setup.py build } package() { install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE" cd "${_pkgname}-$pkgver" python setup.py install --root="$pkgdir/" --optimize=1 --skip-build }