summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-toolz/package.py
blob: e6d44b9c512ad356c55e5cd5ce23c9e2cf86aa3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2019 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 PyToolz(PythonPackage):
    """A set of utility functions for iterators, functions, and dictionaries"""

    homepage = "http://github.com/pytoolz/toolz/"
    url      = "https://pypi.io/packages/source/t/toolz/toolz-0.9.0.tar.gz"

    import_modules = ['toolz', 'tlz', 'toolz.curried', 'toolz.sandbox']

    version('0.9.0', '6fd07249389dd0b3bfe71d4282314328')

    depends_on('py-setuptools', type='build')