mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-20 17:55:15 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
37 lines
899 B
Text
37 lines
899 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=py3-hyperopt
|
|
pkgver=0.2.7
|
|
pkgrel=1
|
|
pkgdesc="Distributed Asynchronous Hyperparameter Optimization in Python"
|
|
url="https://hyperopt.github.io/hyperopt/"
|
|
arch="noarch"
|
|
license="BSD-3-Clause"
|
|
depends="
|
|
python3
|
|
py3-future
|
|
py3-numpy
|
|
py3-networkx
|
|
py3-tqdm
|
|
py3-scipy
|
|
py3-cloudpickle
|
|
py3-decorator
|
|
py3-nose
|
|
py3-matplotlib
|
|
"
|
|
makedepends="py3-setuptools"
|
|
source="https://github.com/hyperopt/hyperopt/archive/$pkgver/hyperopt-$pkgver.tar.gz"
|
|
options="!check" # Broken on ipython
|
|
builddir="$srcdir/hyperopt-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
3646de3c3c8c5ece7ddf2e0325f0360fc46491b9b7f1ff0d6b4dff2c6421ca69b092d3df5c6077552e0004660784c6d7a2a2992d33677ff8fc22a19ea30bd5f6 hyperopt-0.2.7.tar.gz
|
|
"
|