summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7d59c46842b69438eca6a189cb60cebc555c9bbf (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
38
39
40
# Maintainer: envolution
# Contributor: Aseem Athale <athaleaseem@gmail.com>
# Contributor: Philip Goto <philip.goto@gmail.com>
# shellcheck shell=bash disable=SC2034,SC2154

_pkgname=srsly
pkgname=python-${_pkgname}-bin
pkgver=2.5.1
pkgrel=1
pkgdesc='Modern high-performance serialization utilities for Python - bin (no cython0 req)'
arch=(x86_64)
url='https://github.com/explosion/srsly'
license=(MIT)
provides=(python-${_pkgname})
conflicts=(python-${_pkgname})
depends=(
  python-catalogue
  python-pytz
  python-mock
  python-numpy
  python-configobj
)
checkdepends=(
  python-pytest
  python-scipy
  python-psutil
  python-pytest-timeout
)
makedepends=(
  python-installer
  python-wheel
)
source=("https://github.com/explosion/srsly/releases/download/release-v${pkgver}/srsly-${pkgver}-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl")
b2sums=('b65ddaee0c99075a4e4c0eddac015b7bc228f873bc133851c8c73ad24c9d553def2c225cc58f4fd34a1a220c7a29b493d07ad52ec5e5c6117dc5802303a72e12')
noextract=("srsly-${pkgver}-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl")

package() {
  python -m installer --destdir="$pkgdir" "srsly-${pkgver}-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
}
# vim:set ts=2 sw=2 et: