diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-munkres/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-munkres/package.py b/var/spack/repos/builtin/packages/py-munkres/package.py new file mode 100644 index 0000000000..942fc34e7c --- /dev/null +++ b/var/spack/repos/builtin/packages/py-munkres/package.py @@ -0,0 +1,19 @@ +# 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 PyMunkres(PythonPackage): + """Python library for Munkres algorithm""" + + homepage = "https://github.com/bmc/munkres" + pypi = "munkres/munkres-1.1.2.tar.gz" + + version("1.1.4", sha256="fc44bf3c3979dada4b6b633ddeeb8ffbe8388ee9409e4d4e8310c2da1792db03") + version("1.1.2", sha256="81e9ced40c3d0ffc48be4b6da5cfdfaa49041faaaba8075b159974ec47926aea") + + depends_on("python@3.6:", type=("build", "run")) + depends_on("py-setuptools", type="build") |