summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-crcmod/package.py
blob: 77b755b19297730944e313d364c85e10e92fa65e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2024 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 PyCrcmod(PythonPackage):
    """Python module for generating objects that
    compute the Cyclic Redundancy Check (CRC)"""

    homepage = "http://crcmod.sourceforge.net/"
    pypi = "crcmod/crcmod-1.7.tar.gz"

    license("MIT")

    version("1.7", sha256="dc7051a0db5f2bd48665a990d3ec1cc305a466a77358ca4492826f41f283601e")
    version("1.6", sha256="56d27d035ea029c6ed96779ca042c0136d39d106e3c30baa6422738c7d86aaa5")

    depends_on("python@2.4:2.7,3.1:", type=("build", "run"))
    depends_on("py-setuptools@40.0.0:", type="build")