summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-sortedcontainers/package.py
blob: 32ca17ca4b89f70db21ee5544fe25a4f738bc0ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2021 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 PySortedcontainers(PythonPackage):
    """Sorted Containers is an Apache2 licensed sorted collections library,
    written in pure-Python, and fast as C-extensions."""

    homepage = "http://www.grantjenks.com/docs/sortedcontainers/"
    pypi = "sortedcontainers/sortedcontainers-2.1.0.tar.gz"

    version('2.1.0', sha256='974e9a32f56b17c1bac2aebd9dcf197f3eb9cd30553c5852a3187ad162e1a03a')

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