summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-textwrap3/package.py
blob: a28350b2dbe03d3bdfe708373115be7e6e8605da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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 PyTextwrap3(PythonPackage):
    """textwrap from Python 3.6 backport (plus a few tweaks)."""

    homepage = "https://github.com/jonathaneunice/textwrap3"
    pypi = "textwrap3/textwrap3-0.9.2.zip"

    version("0.9.2", sha256="5008eeebdb236f6303dcd68f18b856d355f6197511d952ba74bc75e40e0c3414")

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