14 lines
467 B
Python
14 lines
467 B
Python
# Copyright 2013-2024 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)
|
|
|
|
import os
|
|
|
|
from spack.package import *
|
|
from spack.pkg.builtin.py_immutabledict import PyImmutabledict as SpackPyImmutabledict
|
|
|
|
class PyImmutabledict(SpackPyImmutabledict):
|
|
|
|
version("2.0.0", sha256="1b3ab650dc9db0df80fc198b9d31bee45062c4774b3dfbf3d2f3e1f6d4929258")
|