summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c880f661a8e98a586f0d221a82577fc3285bac38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Maintainer: Frederik Schwan <freswa at archlinux dot org>

pkgname=python-hid-parser
pkgver=0.0.3
pkgrel=6
pkgdesc='Typed pure Python library to parse HID report descriptors'
arch=('any')
url='https://github.com/usb-tools/python-hid-parser'
license=('MIT')
depends=(python-typing_extensions)
makedepends=(python-{build,installer,setuptools,wheel})
checkdepends=(python-{hypothesis,pytest})
conflicts=(solaar)
source=("https://github.com/usb-tools/python-hid-parser/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz" "test_items.patch")
b2sums=('00a485093ae4f1268c3e6ed8b194f1c0f1579e665863cd609a4690f292b8646ec6d51ab35f803dac7cb0185b0b837fe6ae810a7567fe96102d43e39eefb950e6'
        '894d0e2f1c264096baf69a98716ffaeabac83d79544e7180721ead3067e17fe038096aa5394d6c282d5d409cf94988e2ef85a7079c4214bee7f33e173e430dac')

prepare() {
    cd "$srcdir/${pkgname}-${pkgver}"
    patch -p1 -i "${srcdir}/test_items.patch"
}

build() {
  cd ${pkgname}-${pkgver}
  python -m build --wheel --no-isolation
}

check() {
  cd ${pkgname}-${pkgver}
  python -m pytest
}

package() {
  cd ${pkgname}-${pkgver}
  python -m installer --destdir="$pkgdir" dist/*.whl
  install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}