2024-01-02 16:21:30 +08:00
|
|
|
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
2023-05-02 11:21:54 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack.package import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyPykerberos(PythonPackage):
|
|
|
|
"""This Python package is a high-level wrapper for Kerberos (GSSAPI) operations."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/02strich/pykerberos"
|
|
|
|
pypi = "pykerberos/pykerberos-1.2.4.tar.gz"
|
|
|
|
|
2023-12-23 03:29:11 +08:00
|
|
|
license("Apache-2.0")
|
|
|
|
|
2023-05-02 11:21:54 +08:00
|
|
|
version("1.2.4", sha256="9d701ebd8fc596c99d3155d5ba45813bd5908d26ef83ba0add250edb622abed4")
|
|
|
|
|
|
|
|
depends_on("py-setuptools", type="build")
|
|
|
|
|
2023-06-29 06:23:50 +08:00
|
|
|
depends_on("krb5", type=("build", "link"))
|