Package Details: python-inventree-part-import-git 1.9.0.r0.gc2b7d84-1

Git Clone URL: https://aur.archlinux.org/python-inventree-part-import-git.git (read-only, click to copy)
Package Base: python-inventree-part-import-git
Description: CLI to import parts from into your InvenTree instance
Upstream URL: https://github.com/30350n/inventree_part_import
Licenses: MIT
Conflicts: python-inventree-part-import
Provides: python-inventree-part-import
Submitter: andrejr
Maintainer: andrejr
Last Packager: andrejr
Votes: 0
Popularity: 0.000000
First Submitted: 2024-05-18 12:14 (UTC)
Last Updated: 2025-10-29 19:29 (UTC)

Latest Comments

GPereira commented on 2025-10-06 19:57 (UTC)

New package dependencies and error-helper is no longer a git module but instead is a dependency:

# Maintainer: Andrej Radović <r.andrej@gmail.com>
pkgname=python-inventree-part-import-git
pkgver=1.8.1.r21.ge58f154
pkgrel=1
pkgdesc="CLI to import parts from into your InvenTree instance"
url="https://github.com/30350n/inventree_part_import"
depends=(
    'python-beautifulsoup4'
    'python-click'
    'python-cutie'
    'python-digikey-api'
    'python-fake-useragent'
    'python-inventree'
    'python-isocodes'
    'python-platformdirs'
    'python-requests'
    'python-tablib'
    'python-thefuzz'
    'python-yaml'
    'python-error-helper'
    'python-browser-cookie3'
)
makedepends=(python-build python-installer python-wheel python-poetry)
license=('MIT')
arch=('any')
source=(
    "$pkgname::git+https://github.com/30350n/inventree_part_import.git"
)
sha256sums=('SKIP')
conflicts=('python-inventree-part-import')
provides=("python-inventree-part-import=${pkgver}")

pkgver() {
    cd "$pkgname"
    git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
    cd "$srcdir/$pkgname"
    python -m build --wheel --no-isolation
}

package() {
    cd "$srcdir/$pkgname"
    python -m installer --destdir="$pkgdir" dist/*.whl
}

GPereira commented on 2025-10-06 12:54 (UTC)

This needs work to support python 3.13

GPereira commented on 2024-05-24 11:02 (UTC)

extra/python-hatchling This package needs to be added as a build dependency