2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-04-25 06:39:49 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyDbf(PythonPackage):
|
2016-04-25 07:06:51 +08:00
|
|
|
"""Pure python package for reading/writing dBase, FoxPro, and Visual FoxPro
|
|
|
|
.dbf files (including memos)"""
|
2016-04-25 06:39:49 +08:00
|
|
|
|
2020-12-30 08:44:04 +08:00
|
|
|
pypi = "dbf/dbf-0.96.005.tar.gz"
|
2016-04-25 06:39:49 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.96.005', sha256='d6e03f1dca40488c37cf38be9cb28b694c46cec747a064dcb0591987de58ed02')
|
|
|
|
version('0.94.003', sha256='c95b688d2f28944004368799cc6e2999d78af930a69bb2643ae098c721294444')
|