summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-lcls-krtc/package.py
blob: c97779b47b1dea65b0ca3d82338b2e898676feb1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 PyLclsKrtc(PythonPackage):
    """Very small utility class for using Kerberos authentication with Python requests."""

    pypi = "lcls-krtc/lcls-krtc-0.2.0.tar.gz"

    maintainers = ["valmar"]

    version("0.2.0", sha256="20e6327d488d23e29135be44504bf7df72e4425a518f4222841efcd2cd2985f9")

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