summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-google-crc32c/package.py
blob: 81d39a84423a997fd7076e61b9bbc37429c6b636 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copyright 2013-2023 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 PyGoogleCrc32c(PythonPackage):
    """This package wraps the google/crc32c hardware-based implementation
    of the CRC32C hashing algorithm."""

    homepage = "https://github.com/googleapis/python-crc32c"
    pypi = "google-crc32c/google-crc32c-1.3.0.tar.gz"

    maintainers("marcusboden")

    license("Apache-2.0")

    version("1.3.0", sha256="276de6273eb074a35bc598f8efbc00c7869c5cf2e29c90748fccc8c898c244df")

    depends_on("py-setuptools", type="build")
    depends_on("google-crc32c", type=("build", "run"))

    def setup_build_environment(self, env):
        env.set("CRC32C_INSTALL_PREFIX", self.spec["google-crc32c"].prefix)