blob: caf95888d57fa197b8fbb4e8941277c40774928f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright 2013-2018 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 RHms(RPackage):
"""Implements an S3 class for storing and formatting time-of-day values,
based on the 'difftime' class."""
homepage = "https://cran.rstudio.com/web/packages/hms/index.html"
url = "https://cran.rstudio.com/src/contrib/hms_0.3.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/hms"
version('0.3', '92c4a0cf0c402a35145b5bb57212873e')
|