summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-lcls-krtc/package.py
blob: fd3c9607c7e0c9d005baa55e5557d95e7f3ec79d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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")

    license("MIT")

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

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