summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-binwalk/package.py
blob: da9a3519362fd480d7bcd57c81bc0cd2698c88e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2019 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 PyBinwalk(PythonPackage):
    """Binwalk is a fast, easy to use tool for analyzing, reverse engineering,
       and extracting firmware images."""

    homepage = "https://github.com/devttys0/binwalk"
    url      = "https://pypi.io/packages/source/b/binwalk/binwalk-2.1.0.tar.gz"

    version('2.1.0', sha256='218c8045c6cb3ed6e21814fb89cdb913808b02dfe5a6cc30f85f4a59e8129f6b')

    depends_on('python')
    depends_on('py-setuptools', type='build')