summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-multi-key-dict/package.py
blob: 779474fd69edfe4a3a143ce93a022d7f768bcd3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2013-2023 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.package import *


class PyMultiKeyDict(PythonPackage):
    """Multi key dictionary implementation"""

    homepage = "https://github.com/formiaczek/multi_key_dict"
    pypi = "multi_key_dict/multi_key_dict-2.0.3.tar.gz"

    version("2.0.3", sha256="deebdec17aa30a1c432cb3f437e81f8621e1c0542a0c0617a74f71e232e9939e")

    # pip silently replaces distutils with setuptools
    depends_on("py-setuptools", type="build")