# 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 PySpinnakerDataspecification(PythonPackage): """This package provides utilities for specifying binary data algorithmically, and executing the specifications to produce the data.""" homepage = "https://github.com/SpiNNakerManchester/DataSpecification" pypi = "SpiNNaker_DataSpecification/SpiNNaker_DataSpecification-1!6.0.0.tar.gz" version("6.0.0", sha256="5265771f5a3e77b1d7a1e075d8cfea5987c37b0a3880874316101a33d15d01dd") depends_on("python@3.7:", type=("build", "run")) depends_on("py-spinnutilities@6.0.0", type=("build", "run")) depends_on("py-spinnmachine@6.0.0", type=("build", "run"))