summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-xenv/package.py
blob: cc09495da2468e269e8f44469729c6d68000180f (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 PyXenv(PythonPackage):
    """Helpers to work with the environment in a platform independent way."""

    homepage = "https://gitlab.cern.ch/gaudi/xenv"
    pypi = "xenv/xenv-1.0.0.tar.gz"
    git = "https://gitlab.cern.ch/gaudi/xenv.git"

    license("GPL-3.0-or-later")

    version("develop", branch="master")
    version("1.0.0", sha256="cea9547295f0bd07c87e68353bb9eb1c2f2d1c09a840e3196c19cbc807ee4558")

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