py-mahotas: new package (#41329)
* py-mahotas: new package * py-mahotas: relax version constraint on numpy --------- Co-authored-by: LydDeb <lyderic.debusschere@eolen.com>
This commit is contained in:
parent
42bac83c2e
commit
3b021bb4ac
1 changed files with 20 additions and 0 deletions
20
var/spack/repos/builtin/packages/py-mahotas/package.py
Normal file
20
var/spack/repos/builtin/packages/py-mahotas/package.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# 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 PyMahotas(PythonPackage):
|
||||
"""Mahotas: Computer Vision Library."""
|
||||
|
||||
homepage = "http://luispedro.org/software/mahotas"
|
||||
pypi = "mahotas/mahotas-1.4.13.tar.gz"
|
||||
|
||||
maintainers("LydDeb")
|
||||
|
||||
version("1.4.13", sha256="a78dfe15045a20a0d9e01538b80f874580cd3525ae3eaa2c83ced51eb455879c")
|
||||
|
||||
depends_on("py-setuptools", type="build")
|
||||
depends_on("py-numpy", type=("build", "run"))
|
Loading…
Reference in a new issue