20 lines
727 B
Python
20 lines
727 B
Python
# Copyright 2013-2022 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 PyCyordereddict(PythonPackage):
|
|
"""The Python standard library's OrderedDict ported to Cython.
|
|
A drop-in replacement that is 2-6x faster."""
|
|
|
|
homepage = "https://github.com/shoyer/cyordereddict"
|
|
pypi = "cyordereddict/cyordereddict-1.0.0.tar.gz"
|
|
|
|
version('1.0.0', sha256='d9b2c31796999770801a9a49403b8cb49510ecb64e5d1e9d4763ed44f2d5a76e')
|
|
version('0.2.2', sha256='f8387caaffba695d704311842291ede696080a5ed306f07f1825de126fb7f1ec')
|
|
|
|
depends_on('py-setuptools', type='build')
|