summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-constantly/package.py
blob: b569b524348d90d53064315740b5b5d59d318825 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PyConstantly(PythonPackage):
    """Symbolic constants in Python"""

    homepage = "https://github.com/twisted/constantly"
    pypi = "constantly/constantly-15.1.0.tar.gz"

    license("MIT")

    version("15.1.0", sha256="586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35")

    depends_on("py-setuptools", type="build")