[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#61611] [PATCH 10/10] gnu: Add julia-astrotime.
From: |
Sharlatan Hellseher |
Subject: |
[bug#61611] [PATCH 10/10] gnu: Add julia-astrotime. |
Date: |
Sun, 19 Feb 2023 00:04:53 +0000 |
* gnu/packages/julia-xyz.scm (julia-astrotime): New variable.
---
gnu/packages/julia-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index a07326df6f..a1561f575e 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -262,6 +262,36 @@ (define-public julia-arraylayouts
much wider class of matrix types than Julia's in-built @code{StridedArray}.")
(license license:expat)))
+(define-public julia-astrotime
+ (package
+ (name "julia-astrotime")
+ (version "0.7.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaAstro/AstroTime.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "032hlanan49ypqh4lwlf91pg7052c8h5sgbxqc1771b8j9srbyd2"))))
+ (build-system julia-build-system)
+ (native-inputs
+ (list julia-measurements))
+ (propagated-inputs
+ (list julia-erfa
+ julia-earthorientation
+ julia-itemgraphs
+ julia-macrotools
+ julia-muladdmacro
+ julia-reexport))
+ (home-page "https://github.com/JuliaAstro/AstroTime.jl")
+ (synopsis "Astronomical time keeping in Julia")
+ (description "@code{AstroTime.jl} provides a high-precision, time-scale
+aware, @code{DateTime}-like data type which supports all commonly used
+astronomical time scales.")
+ (license license:expat)))
+
(define-public julia-automa
(package
(name "julia-automa")
--
2.39.1
- [bug#61611] [PATCH 00/10]: gnu: Add julia-astrotime, Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 01/10] gnu: Add julia-leapseconds., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 02/10] gnu: Add julia-optionaldata., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 04/10] gnu: Add julia-earthorientation., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 08/10] gnu: Add julia-itemgraphs., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 05/10] gnu: Add julia-inflate., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 07/10] gnu: Add julia-lightgraphs., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 03/10] gnu: Add julia-remotefiles., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 06/10] gnu: Add julia-arnoldimethod., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 09/10] gnu: Add julia-muladdmacro., Sharlatan Hellseher, 2023/02/18
- [bug#61611] [PATCH 10/10] gnu: Add julia-astrotime.,
Sharlatan Hellseher <=