20 lines
616 B
Python
20 lines
616 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)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PyOverrides(PythonPackage):
|
|
"""A decorator to automatically detect mismatch when overriding a method."""
|
|
|
|
homepage = "https://github.com/mkorpela/overrides"
|
|
pypi = "overrides/overrides-7.3.1.tar.gz"
|
|
|
|
license("Apache-2.0")
|
|
|
|
version("7.3.1", sha256="8b97c6c1e1681b78cbc9424b138d880f0803c2254c5ebaabdde57bb6c62093f2")
|
|
|
|
depends_on("py-setuptools", type="build")
|