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

    homepage = "https://github.com/pfultz2/cget"
    pypi = "cget/cget-0.1.9.tar.gz"

    version('0.1.9', sha256='2a7913b601bec615208585eda7e69998a43cc17080d36c2ff2ce8742c9794bf6')

    depends_on("py-setuptools", type='build')
    depends_on("py-six@1.10:", type=('build', 'run'))
    depends_on("py-click@6.6:", type=('build', 'run'))
    depends_on('py-subprocess32', when='^python@:2', type=('build', 'run'))