
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
20 lines
735 B
Python
20 lines
735 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 ROrgHsEgDb(RPackage):
|
|
"""Genome wide annotation for Human, primarily based on mapping
|
|
using Entrez Gene identifiers."""
|
|
|
|
homepage = "https://bioconductor.org/packages/org.Hs.eg.db/"
|
|
url = "https://www.bioconductor.org/packages/3.5/data/annotation/src/contrib/org.Hs.eg.db_3.4.1.tar.gz"
|
|
|
|
version('3.4.1', sha256='0f87b3f1925a1d7007e5ad9200bdf511788bd1d7cb76f1121feeb109889c2b00')
|
|
|
|
depends_on('r@3.4.0:3.4.9', when='@3.4.1')
|
|
depends_on('r-annotationdbi', type=('build', 'run'))
|