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

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

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