blob: 77641dea49bc134c0021817c2214235fbf4d2cbf (
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
|
# Maintainer: Michael Schubert <mschu.dev at gmail> github.com/mschubert/PKGBUILDs
pkgname=python-bioservices
_pkgname=${pkgname#python-}
pkgver=1.8.0
pkgrel=1
pkgdesc="Access Bioinformatices Web Services and framework for WSDL/SOAP and REST wrappers"
arch=('any')
license=('GPL')
url="https://bioservices.readthedocs.io/"
depends=('python-easydev>=0.9.36' 'python-beautifulsoup4' 'python-pandas'
'python-colorlog' 'python-grequests' 'python-requests-cache'
'python-xmltodict' 'python-suds')
source=("https://pypi.io/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz")
sha256sums=('e581f7096b0083afa1e9d5b075c46b5a8e042767ca0fedb617daa50d1e1a739f')
build() {
cd "$srcdir/$_pkgname-$pkgver"
python setup.py build
}
package() {
cd "$srcdir/$_pkgname-$pkgver"
python setup.py install --skip-build --root="$pkgdir" --optimize=1
}
|