summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-supervisor/package.py
blob: 7e09b0b543c3e136558e3294488ebc4335231a8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PySupervisor(PythonPackage):
    """A system for controlling process state under UNIX"""

    homepage = "http://supervisord.org"
    pypi = "supervisor/supervisor-4.2.4.tar.gz"

    version("4.2.4", sha256="40dc582ce1eec631c3df79420b187a6da276bbd68a4ec0a8f1f123ea616b97a2")

    depends_on("python@3.4:", type=("build", "run"))
    depends_on("py-setuptools", type=("build", "run"))