blob: 4ee01b064feae5ee327d4cca450e3f5aa46b77b0 (
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
|
# 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.0
pkgrel=2
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-pytest
python-pytest-timeout
python-pytz
python-mock
python-numpy
)
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=('c893192da004c17c6c17a1fc0c85d4099014e0fc4d4fe711ca18a740eba87bf822d39dab902cc3748082e7a80e4a12f82828075e125f8ee5cbc991617c42e000')
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:
|