summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-bcolz/package.py
blob: 620cd1036fe43e8de66fb18a726e1b2d007ec4b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *


class PyBcolz(PythonPackage):
    """bcolz provides columnar and compressed data containers. Column
    storage allows for efficiently querying tables with a large number
    of columns. It also allows for cheap addition and removal of column.
    In addition, bcolz objects are compressed by default for reducing
    memory/disk I/O needs. The compression process is carried out internally
    by Blosc, a high-performance compressor that is optimized for binary data.
    """

    homepage = "https://github.com/Blosc/bcolz"
    pypi = "bcolz/bcolz-1.2.1.tar.gz"

    version('1.2.1', sha256='c017d09bb0cb5bbb07f2ae223a3f3638285be3b574cb328e91525b2880300bd1')

    depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))
    depends_on('py-numpy@1.7:', type=('build', 'run'))
    depends_on('py-setuptools@18.1:', type='build')
    depends_on('py-setuptools-scm@1.5.5:', type='build')
    depends_on('py-cython@0.22:', type='build')