
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
16 lines
583 B
Python
16 lines
583 B
Python
# 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 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')
|