43 lines
1.5 KiB
Python
43 lines
1.5 KiB
Python
# 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)
|
|
|
|
import os
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PyHtgettoken(PythonPackage):
|
|
"""htgettoken gets OIDC authentication tokens for High Throughput Computing
|
|
via a Hashicorp vault server."""
|
|
|
|
homepage = "https://github.com/fermitools/htgettoken"
|
|
|
|
# htgettoken is not available on PyPi
|
|
url = "https://github.com/fermitools/htgettoken/archive/refs/tags/v1.16.tar.gz"
|
|
git = "https://github.com/fermitools/htgettoken.git"
|
|
|
|
maintainers("wdconinc")
|
|
|
|
license("BSD-3-Clause")
|
|
|
|
# The following versions refer to setuptools-buildable commits after 1.16;
|
|
# they are special reproducible version numbers from `git describe`
|
|
version("1.16-33-g3788bb4", commit="3788bb4733e5e8f856cee51566df9a36cbfe097d")
|
|
version("1.16-20-g8b72f48", commit="8b72f4800ef99923dac99dbe0756a26266a27886")
|
|
# Older versions do not have a python build system
|
|
|
|
depends_on("py-setuptools@30.3:", type="build")
|
|
|
|
depends_on("py-gssapi", type=("build", "run"))
|
|
depends_on("py-paramiko", type=("build", "run"))
|
|
depends_on("py-urllib3", type=("build", "run"))
|
|
|
|
def setup_run_environment(self, env):
|
|
dir = os.environ.get("XDG_RUNTIME_DIR", "/tmp")
|
|
uid = os.environ.get("UID", str(os.geteuid()))
|
|
file = join_path(dir, "bt_u" + uid)
|
|
env.set("BEARER_TOKEN", file)
|
|
env.set("BEARER_TOKEN_FILE", file)
|