2021-01-02 15:10:28 +08:00
|
|
|
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
2020-02-28 01:55:10 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyPycifrw(PythonPackage):
|
|
|
|
"""Python library for interacting with Crystallographic Information
|
|
|
|
Framework (CIF) files."""
|
|
|
|
|
|
|
|
homepage = "https://bitbucket.org/jamesrhester/pycifrw/src/development/"
|
2020-12-30 08:44:04 +08:00
|
|
|
pypi = "PyCifRW/PyCifRW-4.4.1.tar.gz"
|
2020-02-28 01:55:10 +08:00
|
|
|
|
|
|
|
version('4.4.1', sha256='cef7662f475e0eb78a55c2d55774d474e888c96b0539e5f08550afa902cdc4e1')
|
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|