
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
# Copyright 2013-2021 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 import *
|
|
|
|
|
|
class PyCantoolz(PythonPackage):
|
|
"""CANToolz is a framework for analysing CAN networks and devices.
|
|
It provides multiple modules that can be chained using CANToolz's
|
|
pipe system and used by security researchers, automotive/OEM
|
|
security testers in black-box analysis."""
|
|
|
|
homepage = "https://github.com/CANToolz/CANToolz/"
|
|
url = "https://github.com/CANToolz/CANToolz/archive/v3.7.0.tar.gz"
|
|
|
|
version('3.7.0', sha256='36f5e8aa407e5c82abe84fb190ddd45ed12887ee833f06ef5eb78504017f0e5d')
|
|
version('3.6.1', sha256='e40c712b726f1caaca16b0d0e0b3aeadd01426944663ba0dce5c47a340304e29')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-bitstring', type=('build', 'run'))
|
|
depends_on('py-flask', type=('build', 'run'))
|
|
depends_on('py-pyserial', type=('build', 'run'))
|
|
depends_on('py-mido', type=('build', 'run'))
|
|
depends_on('py-numpy', type=('build', 'run'))
|