summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-peachpy/package.py
blob: de6ea3451b2207830c70078f6b5e968d6aef14da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PyPeachpy(PythonPackage):
    """Portable Efficient Assembly Codegen in Higher-level Python."""

    homepage = "https://github.com/Maratyszcza/PeachPy"
    git = "https://github.com/Maratyszcza/PeachPy.git"

    license("BSD-2-Clause")

    version("master", branch="master")

    depends_on("py-setuptools", type="build")
    depends_on("py-opcodes@0.3.13:", type="build")
    depends_on("py-six", type=("build", "run"))