spack/var/spack/repos/builtin/packages/py-iniparse/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

23 lines
710 B
Python

# Copyright 2013-2024 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 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"
license("MIT")
version("master", branch="master")
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")