py-munkres: new package (#35259)
This commit is contained in:
parent
689bdd6f36
commit
931c0edaf4
1 changed files with 19 additions and 0 deletions
19
var/spack/repos/builtin/packages/py-munkres/package.py
Normal file
19
var/spack/repos/builtin/packages/py-munkres/package.py
Normal file
|
@ -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")
|
Loading…
Reference in a new issue