summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-typing-inspect/package.py
blob: 902b00767c42ec70432ee564b739c47442159862 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PyTypingInspect(PythonPackage):
    """Runtime inspection utilities for typing module."""

    homepage = "https://github.com/ilevkivskyi/typing_inspect"
    pypi = "typing_inspect/typing_inspect-0.8.0.tar.gz"

    license("MIT")

    version("0.8.0", sha256="8b1ff0c400943b6145df8119c41c244ca8207f1f10c9c057aeed1560e4806e3d")

    depends_on("py-setuptools", type="build")
    depends_on("py-mypy-extensions@0.3:", type=("build", "run"))
    depends_on("py-typing-extensions@3.7.4:", type=("build", "run"))