blob: 0939cf058c7b546f41d2afd69eb0f75f2f2f65d8 (
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 PyPythonDotenv(PythonPackage):
"""Read key-value pairs from a .env file and set them as environment variables"""
homepage = "https://github.com/theskumar/python-dotenv"
pypi = "python-dotenv/python-dotenv-0.19.2.tar.gz"
maintainers("jcpunk")
license("BSD-3-Clause")
version("0.19.2", sha256="a5de49a31e953b45ff2d2fd434bbc2670e8db5273606c1e737cc6b93eff3655f")
variant("cli", default=False, description="Add commandline tools")
depends_on("python@3.5:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-click@5:", when="+cli", type=("build", "run"))
|