2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 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 PyXlrd(PythonPackage):
|
2016-04-25 07:06:51 +08:00
|
|
|
"""Library for developers to extract data from Microsoft Excel (tm)
|
|
|
|
spreadsheet files"""
|
|
|
|
|
2016-04-25 06:39:49 +08:00
|
|
|
homepage = 'http://www.python-excel.org/'
|
2017-08-07 00:45:00 +08:00
|
|
|
url = "https://pypi.io/packages/source/x/xlrd/xlrd-0.9.4.tar.gz"
|
2016-04-25 06:39:49 +08:00
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.9.4', sha256='8e8d3359f39541a6ff937f4030db54864836a06e42988c452db5b6b86d29ea72')
|