summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-text-unidecode/package.py
blob: 4febed4bd3a22c72eedba19ae91f5990d7411406 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 PyTextUnidecode(PythonPackage):
    """text-unidecode is the most basic port of the Text::Unidecode Perl
    library."""

    homepage = "https://github.com/kmike/text-unidecode/"
    pypi = "text-unidecode/text-unidecode-1.3.tar.gz"

    license("Artistic-1.0-Perl")

    version("1.3", sha256="bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93")

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