summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pynrrd/package.py
blob: 8372b1a6ce19b78d23518fa4cf8b0325108a3333 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2024 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 PyPynrrd(PythonPackage):
    """Python library for reading and writing NRRD files into and from numpy arrays"""

    homepage = "https://github.com/mhe/pynrrd"
    pypi = "pynrrd/pynrrd-0.4.0.tar.gz"

    license("MIT")

    version("1.0.0", sha256="4eb4caba03fbca1b832114515e748336cb67bce70c7f3ae36bfa2e135fc990d2")

    depends_on("py-setuptools", type="build")
    depends_on("py-numpy@1.11.1:", type=("build", "run"))
    depends_on("py-nptyping", type=("build", "run"))
    depends_on("py-typing-extensions", type=("build", "run"))