spack/var/spack/repos/builtin/packages/py-debtcollector/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

28 lines
935 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 PyDebtcollector(PythonPackage):
"""
A collection of Python deprecation patterns and strategies that help you
collect your technical debt in a non-destructive manner.
"""
homepage = "https://docs.openstack.org/debtcollector/latest"
pypi = "debtcollector/debtcollector-2.2.0.tar.gz"
maintainers("haampie")
version("2.2.0", sha256="787981f4d235841bf6eb0467e23057fb1ac7ee24047c32028a8498b9128b6829")
depends_on("python@3.6:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-pbr@2.0.0:2.0,2.1.1:", type="build")
depends_on("py-six@1.10.0:", type=("build", "run"))
depends_on("py-wrapt@1.7.0:", type=("build", "run"))