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:
parent
c38b463954
commit
55870efbcc
24
var/spack/repos/builtin/packages/py-inflect/package.py
Normal file
24
var/spack/repos/builtin/packages/py-inflect/package.py
Normal 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:")
|
Loading…
Reference in New Issue
Block a user