summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-ww/package.py
blob: c6e4b3f6cfe68155a7f94baa55462a85f773ed43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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 PyWw(PythonPackage):
    """Wrappers for Python builtins with higher-level APIs."""

    homepage = "https://github.com/tygs/ww/"
    pypi = "ww/ww-0.2.1.tar.gz"

    license("MIT")

    version("0.2.1", sha256="3664f1f91bf927fe597ab153e8df73c8954927258b3737220efd1cb9912ebd7e")

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

    depends_on("py-chardet", type=("build", "run"))
    depends_on("py-formatizer", type=("build", "run"))
    depends_on("py-future", type=("build", "run"))
    depends_on("py-six", type=("build", "run"))