
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
24 lines
998 B
Python
24 lines
998 B
Python
# Copyright 2013-2019 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 import *
|
|
|
|
|
|
class PyDendropy(PythonPackage):
|
|
"""DendroPy is a Python library for phylogenetic computing. It provides
|
|
classes and functions for the simulation, processing, and manipulation of
|
|
phylogenetic trees and character matrices, and supports the reading and
|
|
writing of phylogenetic data in a range of formats, such as NEXUS, NEWICK,
|
|
NeXML, Phylip, FASTA, etc."""
|
|
|
|
homepage = "https://www.dendropy.org"
|
|
url = "https://pypi.io/packages/source/d/dendropy/DendroPy-4.3.0.tar.gz"
|
|
|
|
version('4.3.0', sha256='bd5b35ce1a1c9253209b7b5f3939ac22beaa70e787f8129149b4f7ffe865d510')
|
|
version('3.12.0', sha256='38a0f36f2f7aae43ec5599408b0d0a4c80996b749589f025940d955a70fc82d4')
|
|
|
|
depends_on('python@2.7:,3.4:')
|
|
depends_on('py-setuptools', type='build')
|