New package: py-inflect (#35942)

Co-authored-by: Alex C Leute <aclrc@sporcsubmit.rc.rit.edu>
Co-authored-by: qwertos <qwertos@users.noreply.github.com>
This commit is contained in:
Jen Herting 2023-03-12 15:44:51 -04:00 committed by GitHub
parent c38b463954
commit 55870efbcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,24 @@
# 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 PyInflect(PythonPackage):
"""inflect.py - Correctly generate plurals, singular nouns, ordinals,
indefinite articles; convert numbers to words."""
homepage = "https://github.com/jaraco/inflect"
pypi = "inflect/inflect-5.0.2.tar.gz"
version("6.0.2", sha256="f1a6bcb0105046f89619fde1a7d044c612c614c2d85ef182582d9dc9b86d309a")
version("5.0.2", sha256="d284c905414fe37c050734c8600fe170adfb98ba40f72fc66fed393f5b8d5ea0")
depends_on("python@3.6:", type=("build", "run"))
depends_on("python@3.7:", type=("build", "run"), when="@6.0.2:")
depends_on("py-setuptools@42:", type="build")
depends_on("py-setuptools@56:", type="build", when="@6.0.2:")
depends_on("py-setuptools-scm+toml@3.4.1:", type="build")
depends_on("py-pydantic@1.9.1:", type=("build", "run"), when="@6.0.2:")