25 lines
795 B
Python
25 lines
795 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 RMemuse(RPackage):
|
|
"""Memory Estimation Utilities
|
|
|
|
How much ram do you need to store a 100,000 by 100,000 matrix? How much
|
|
ram is your current R session using? How much ram do you even have?
|
|
Learn the scintillating answer to these and many more such questions
|
|
with the 'memuse' package."""
|
|
|
|
homepage = "https://github.com/shinra-dev/memuse"
|
|
cran = "memuse"
|
|
|
|
maintainers = ['dorton21']
|
|
|
|
version('4.1-0', sha256='58d6d1ca5d6bd481f4ed299eff6a9d5660eb0f8db1abe54c49e144093cba72ad')
|
|
|
|
depends_on('r@3.0.0:', type=('build', 'run'))
|