added package py-sortedcollections

This commit is contained in:
Bryan Herman 2021-01-26 17:17:12 +00:00 committed by Adam J. Stewart
parent 4e465e230e
commit 3455647011

View File

@ -0,0 +1,19 @@
# 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 PySortedcollections(PythonPackage):
"""Sorted Collections is an Apache2 licensed Python sorted collections library."""
homepage = "http://www.grantjenks.com/docs/sortedcollections/"
pypi = "sortedcollections/sortedcollections-1.2.1.tar.gz"
version('1.2.1', sha256='58c31f35e3d052ada6a1fbfc235a408e9ec5e2cfc64a02731cf97cac4afd306a')
depends_on('py-setuptools', type='build')
depends_on('py-sortedcontainers', type=('build', 'run'))