summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-typish/package.py
blob: 678e0134424c4b7eaabe4253d261c3b20e2176e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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)

from spack.package import *


class PyTypish(PythonPackage):
    """Python library for type checking"""

    homepage = "https://github.com/ramonhagenaars/typish"
    url = "https://github.com/ramonhagenaars/typish/archive/v1.9.2.tar.gz"

    license("MIT")

    version("1.9.3", sha256="16f8ff022b7009a91529e363d0484465be57797b9cc34a193ca7e3c4c597e4bc")
    version("1.9.2", sha256="d0cd35aade6f974b2509771ac92aa1a5b4d9efe9c2c34127734539fd28e7145c")

    depends_on("py-setuptools", type="build")