summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-modepy/package.py
blob: 2fb3952f3ce9de7fb3e27cdb2f6c015135024b3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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 PyModepy(PythonPackage):
    """Basis Functions and Node Sets for Interpolation"""

    homepage = "http://documen.tician.de/modepy"
    pypi = "modepy/modepy-2021.1.tar.gz"
    git = "https://github.com/inducer/modepy.git"

    maintainers("cgcgcg")

    license("MIT")

    version("2021.1", sha256="4cddd2d4720128356e0019e8d972d979552eafad059f4acef01e106b22d8d297")

    depends_on("python@3.6:3", type=("build", "run"))
    depends_on("py-setuptools", type="build")
    depends_on("py-numpy", type=("build", "run"))
    depends_on("py-pytools@2013.1:", type=("build", "run"))
    depends_on("py-pytest@2.3:", type=("build", "run"))