File tree Expand file tree Collapse file tree
var/spack/repos/builtin/packages Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,4 +16,5 @@ class PyArt(PythonPackage):
1616
1717 version ("6.1" , sha256 = "6ab3031e3b7710039e73497b0e750cadfe04d4c1279ce3a123500dbafb9e1b64" )
1818
19- depends_on ("python@3.5:" )
19+ depends_on ("python@3.5:" , type = ("build" , "run" ))
20+ depends_on ("py-setuptools" , type = "build" )
Original file line number Diff line number Diff line change 1+ # Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
2+ # Spack Project Developers. See the top-level COPYRIGHT file for details.
3+ #
4+ # SPDX-License-Identifier: (Apache-2.0 OR MIT)
5+
6+ from spack .package import *
7+
8+
9+ class PyPycm (PythonPackage ):
10+ """Multi-class confusion matrix library in Python."""
11+
12+ homepage = "https://www.pycm.io"
13+ pypi = "pycm/pycm-4.0.tar.gz"
14+
15+ license ("MIT" )
16+
17+ version ("4.0" , sha256 = "839e217eeb9a093be633ea746c5ca8b7ab6591d978762face892473c9f28959d" )
18+
19+ depends_on ("py-art@1.8:" , type = ("build" , "run" ))
20+ depends_on ("py-numpy@1.9.0:" , type = ("build" , "run" ))
21+ depends_on ("py-setuptools" , type = "build" )
You can’t perform that action at this time.
0 commit comments