Skip to content
Snippets Groups Projects
package.py 699 B
Newer Older
Eric Müller's avatar
Eric Müller committed
# Copyright 2013-2022 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 PySpinnmachine(PythonPackage):
    """This package is used to provide a Python representation of a SpiNNaker
    machine."""

    homepage = "https://github.com/SpiNNakerManchester/SpiNNMachine"
    pypi = "SpiNNMachine/SpiNNMachine-1!6.0.0.tar.gz"

    version("6.0.0", sha256="713510e78353a3772b4a5fb52cf742ea76fb5d520f5fac3b5c3fd34534afc7ed")

    depends_on("python@3.7:", type=("build", "run"))
    depends_on("py-spinnutilities@6.0.0", type=("build", "run"))