From 73acf110ff834c43e210854a3260ea18e5c83bfc Mon Sep 17 00:00:00 2001 From: Sangu Mbekelu <60823467+Sangu-Mbekelu@users.noreply.github.com> Date: Mon, 10 Jul 2023 15:16:42 -0400 Subject: py-sacrebleu (#37159) * new mosesdecoder package * "new py-sacrebleu package" * Delete package.py * [@spackbot] updating style on behalf of Sangu-Mbekelu * Update package.py updating package based on review --------- Co-authored-by: Sangu Mbekelu --- .../repos/builtin/packages/py-sacrebleu/package.py | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-sacrebleu/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/py-sacrebleu/package.py b/var/spack/repos/builtin/packages/py-sacrebleu/package.py new file mode 100644 index 0000000000..998faf14a8 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-sacrebleu/package.py @@ -0,0 +1,29 @@ +# 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 PySacrebleu(PythonPackage): + """SacreBLEU is a standard BLEU implementation that downloads and manages + WMT datasets, produces scores on detokenized outputs, and reports a string + encapsulating BLEU parameters, facilitating the production of shareable, + comparable BLEU scores.""" + + homepage = "https://github.com/mjpost/sacrebleu" + pypi = "sacrebleu/sacrebleu-2.0.0.tar.gz" + + version("2.0.0", sha256="51fb69b6683f1b9999cd180143bb6b21d7841744537c9aab235cfe676550f0cf") + + depends_on("python@3.6.0:", type=("build", "run")) + depends_on("py-setuptools", type="build") + depends_on("py-portalocker", type=("build", "run")) + depends_on("py-regex", type=("build", "run")) + depends_on("py-tabulate@0.8.9:", type=("build", "run")) + depends_on("py-numpy@1.17:", type=("build", "run")) + depends_on("py-colorama", type=("build", "run")) + + def patch(self): + touch("CHANGELOG.md") -- cgit v1.2.3-60-g2f50