summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-crashtest/package.py
blob: 8712dd7b6dc1002edf23c538d2e37149ab8c2848 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2022 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 PyCrashtest(PythonPackage):
    """Crashtest is a Python library that makes exceptions handling
    and inspection easier."""

    homepage = "https://github.com/sdispater/crashtest"
    pypi = "crashtest/crashtest-0.3.1.tar.gz"

    version("0.3.1", sha256="42ca7b6ce88b6c7433e2ce47ea884e91ec93104a4b754998be498a8e6c3d37dd")

    depends_on("python@3.6:3", type=("build", "run"))
    depends_on("py-poetry-core@1:", type="build")