21 lines
787 B
Python
21 lines
787 B
Python
# 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 PyAgateDbf(PythonPackage):
|
|
"""agate-dbf adds read support for dbf files to agate."""
|
|
|
|
homepage = "https://agate-dbf.readthedocs.io/en/latest/"
|
|
pypi = "agate-dbf/agate-dbf-0.2.1.tar.gz"
|
|
|
|
version("0.2.2", sha256="589682b78c5c03f2dc8511e6e3edb659fb7336cd118e248896bb0b44c2f1917b")
|
|
version("0.2.1", sha256="00c93c498ec9a04cc587bf63dd7340e67e2541f0df4c9a7259d7cb3dd4ce372f")
|
|
|
|
depends_on("py-setuptools", type="build")
|
|
depends_on("py-agate@1.5.0:", type=("build", "run"))
|
|
depends_on("py-dbfread@2.0.5:", type=("build", "run"))
|