summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-iniparse/package.py
blob: eae13dc5dbb7597624de2f577d0cd197d7196ae9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2022 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 PyIniparse(PythonPackage):
    """Accessing and Modifying INI files"""

    homepage = "https://github.com/candlepin/python-iniparse"
    pypi = "iniparse/iniparse-0.4.tar.gz"
    git      = "https://github.com/candlepin/python-iniparse.git"

    version('master', branch='master')
    version('0.4', sha256='abc1ee12d2cfb2506109072d6c21e40b6c75a3fe90a9c924327d80bc0d99c054', deprecated=True)

    depends_on('python@2.4:2.8', when='@:0.4', type=('build', 'run'))
    depends_on('python@2.6:2.8,3.3:', when='@master:', type=('build', 'run'))
    # pip silently replaces distutils with setuptools
    depends_on('py-setuptools', type='build')