
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files - [x] update all licensed files to say 2013-2021 using `spack license update-copyright-year` - [x] appease mypy with some additions to package.py that needed for oneapi.py
19 lines
693 B
Python
19 lines
693 B
Python
# Copyright 2013-2021 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 RFlashclust(RPackage):
|
|
"""flashClust: Implementation of optimal hierarchical clustering"""
|
|
|
|
homepage = "https://cloud.r-project.org/package=flashClust"
|
|
url = "https://cloud.r-project.org/src/contrib/flashClust_1.01-2.tar.gz"
|
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/flashClust"
|
|
|
|
version('1.01-2', sha256='48a7849bb86530465ff3fbfac1c273f0df4b846e67d5eee87187d250c8bf9450')
|
|
|
|
depends_on('r@2.3.0:', type=('build', 'run'))
|