blob: 1c83e42c1e9d9fc3d3362d48119b9638dace3e56 (
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
|
# Contributor: Alexandr Parkhomenko <it@52tour.ru>
pkgname=python-orange-widget-base
pkgver=4.12.0
pkgrel=1
pkgdesc="Base widget and workflow definitions for Orange."
arch=('i686' 'x86_64')
url="http://orange.biolab.si/"
license=('GPL3')
makedepends=('python-setuptools')
depends=('python-chardet' 'python-docutils' 'python-pyqtgraph' 'python-xlrd' 'python-matplotlib' 'python-scikit-learn' 'python-psycopg2' 'python-joblib' 'python-keyrings-alt' 'python-bottleneck' 'python-anyqt' 'qt5-svg' 'python-pip' 'python-serverfiles' 'python-louvain' 'python-xlsxwriter' 'python-opentsne' 'python-networkx' 'python-requests' 'python-pandas')
source=("https://github.com/biolab/orange-widget-base/archive/${pkgver}.tar.gz")
sha256sums=('bcdc78a36cfb8760b677b879ca4de1d8e57ea02109df8a47910e39a66a7ef985')
build() {
cd "${srcdir}/orange-widget-base-$pkgver"
python setup.py build
}
package() {
cd "${srcdir}/orange-widget-base-$pkgver"
python setup.py install --root="${pkgdir}" --optimize=1
}
|