spack/var/spack/repos/builtin/packages/py-portend/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

21 lines
706 B
Python

# 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 PyPortend(PythonPackage):
"""TCP port monitoring and discovery"""
homepage = "https://github.com/jaraco/portend"
pypi = "portend/portend-2.5.tar.gz"
version("2.5", sha256="19dc27bfb3c72471bd30a235a4d5fbefef8a7e31cab367744b5d87a205e7bfd9")
depends_on("py-setuptools", type="build")
depends_on("py-setuptools-scm@1.15.0:", type="build")
depends_on("py-tempora@1.8:", type=("run", "build"))
depends_on("python@2.7:", type=("run", "build"))