blob: a764564d301b9f3dac5ad54bcd17b06dbe61f4b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Phil Schaf <flying-sheep@web.de>
_name=anndata
pkgname=python-$_name
pkgver=0.6.15
pkgrel=1
pkgdesc='A data structure for rectangular numeric data and sample/variable annotations.'
arch=(any)
url="https://github.com/theislab/$_name"
license=(BSD)
depends=(python-pandas python-scipy python-h5py python-natsort)
makedepends=(python-pip)
_wheel="$_name-$pkgver-py3-none-any.whl"
source=("https://files.pythonhosted.org/packages/py3/${_name::1}/$_name/$_wheel")
sha256sums=('27da597c0ac5f1a46280649db2e3560ead292116cea3ef6f5508566d219cc294')
noextract=("$_wheel")
package() {
cd "$srcdir"
pip install --compile --no-deps --ignore-installed --root="$pkgdir" "$_wheel"
}
|