Search Criteria
Package Details: python-mouser 0.1.5-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/python-mouser.git (read-only, click to copy) |
---|---|
Package Base: | python-mouser |
Description: | Mouser Python API |
Upstream URL: | https://github.com/sparkmicro/mouser-api/ |
Licenses: | MIT |
Submitter: | andrejr |
Maintainer: | andrejr (GPereira) |
Last Packager: | andrejr |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2021-09-08 19:58 (UTC) |
Last Updated: | 2024-05-18 10:54 (UTC) |
Dependencies (7)
- python (python37AUR, python311AUR, python310AUR)
- python-click
- python-requests
- python-build (make)
- python-installer (python-installer-gitAUR) (make)
- python-poetry (python-poetry-gitAUR) (make)
- python-wheel (make)
Latest Comments
BrainDamage commented on 2023-05-25 17:05 (UTC) (edited on 2023-05-25 17:05 (UTC) by BrainDamage)
python-poetry is missing from the build deps, or it'll fail to build in a clean chroot with:
GPereira commented on 2023-05-21 14:12 (UTC)
Maintainer: Andrej Radović r.andrej@gmail.com
pkgname=python-mouser _name=${pkgname#python-} pkgver=0.1.3 pkgrel=1 pkgdesc="Mouser Python API" url="https://github.com/sparkmicro/mouser-api/" depends=( 'python' 'python-click' 'python-requests' ) makedepends=('python-setuptools') license=('MIT') arch=('any') source=("https://files.pythonhosted.org/packages/source/${_name::1}/$_name/$_name-$pkgver.tar.gz") sha256sums=('42e43b17e797bfc2b7a8323585ad8e772a8ba69d58439021635945cc0869cd5f')
build() { cd "$srcdir/$_name-$pkgver" python setup.py build }
package() { cd "$srcdir/$_name-$pkgver" python setup.py install --root="$pkgdir" --optimize=1 }