Compare commits

...

No commits in common. "main" and "python-streamz" have entirely different histories.

4 changed files with 57 additions and 3 deletions

24
.SRCINFO Normal file
View File

@ -0,0 +1,24 @@
pkgbase = python-streamz
pkgdesc = Real-time stream processing for python
pkgver = 0.6.4
pkgrel = 1
url = https://github.com/python-streamz/streamz
arch = any
license = custom:BSD-3-clause
checkdepends = python-pytest
checkdepends = python-pandas
checkdepends = python-distributed
checkdepends = python-flaky
checkdepends = python-networkx
checkdepends = python-graphviz
makedepends = python-setuptools
depends = python-tornado
depends = python-toolz
depends = python-zict
depends = lzo
depends = snappy
optdepends = python-pandas: for supports streams of Pandas dataframes or Pandas series
source = streamz-0.6.4.tar.gz::https://github.com/python-streamz/streamz/archive/0.6.4.tar.gz
sha512sums = 830c9dfadccce485ab0ee4e669a0a183648f826922fe5c3a7f647b6beb1ca853858e50327a629bc2d8942904fbad6fd4357639edc8a4bca4f8af94ec20263060
pkgname = python-streamz

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*

32
PKGBUILD Normal file
View File

@ -0,0 +1,32 @@
# Maintainer: Carlos Aznarán <caznaranl@uni.pe>
# Contributor: Guillaume Horel <guillaume.horel@gmail.com>
_base=streamz
pkgname=python-${_base}
pkgver=0.6.4
pkgrel=1
pkgdesc="Real-time stream processing for python"
arch=(any)
url="https://github.com/${pkgname}/${_base}"
depends=(python-tornado python-toolz python-zict lzo snappy)
makedepends=(python-setuptools)
checkdepends=(python-pytest python-pandas python-distributed python-flaky python-networkx python-graphviz) #python-dask
optdepends=('python-pandas: for supports streams of Pandas dataframes or Pandas series') #python-cudf'
license=('custom:BSD-3-clause')
source=(${_base}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz)
sha512sums=('830c9dfadccce485ab0ee4e669a0a183648f826922fe5c3a7f647b6beb1ca853858e50327a629bc2d8942904fbad6fd4357639edc8a4bca4f8af94ec20263060')
build() {
cd ${_base}-${pkgver}
python setup.py build
}
check() {
cd ${_base}-${pkgver}
python -m pytest ${_base}/tests --ignore=streamz/tests/test_dask.py -k 'not separate_thread_without_time and not await_syntax'
}
package() {
cd ${_base}-${pkgver}
PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 --skip-build
install -Dm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
}

View File

@ -1,3 +0,0 @@
# aur.git
This is a experimental mirror of the aur.git repository backing [the AUR](https://aur.archlinux.org).