[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51028] [PATCH 2/7] gnu: Add julia-pyplot.
From: |
Efraim Flashner |
Subject: |
[bug#51028] [PATCH 2/7] gnu: Add julia-pyplot. |
Date: |
Tue, 5 Oct 2021 12:47:31 +0300 |
* gnu/packages/julia-xyz.scm (julia-pyplot): New variable.
---
gnu/packages/julia-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 2238acf103..5925ca2417 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -3280,6 +3280,35 @@ (define-public julia-pycall
share large data structures between Julia and Python without copying them.")
(license license:expat)))
+(define-public julia-pyplot
+ (package
+ (name "julia-pyplot")
+ (version "2.10.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaPy/PyPlot.jl")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "007zs0imfgs69f30pp2a3rc93kl0qiq7qjx6ig35z4wzkmps4skd"))))
+ (build-system julia-build-system)
+ (propagated-inputs
+ `(("julia-colors" ,julia-colors)
+ ("julia-latexstrings" ,julia-latexstrings)
+ ("julia-pycall" ,julia-pycall)
+ ("julia-versionparsing" ,julia-versionparsing)
+ ;; python-matplotlib is expected to be available at runtime.
+ ("python-matplotlib" ,python-matplotlib)))
+ (home-page "https://github.com/JuliaPy/PyPlot.jl")
+ (synopsis "Plotting for Julia based on matplotlib.pyplot")
+ (description "This module provides a Julia interface to the Matplotlib
+plotting library from Python, and specifically to the @code{matplotlib.pyplot}
+module. PyPlot uses the Julia PyCall package to call Matplotlib directly from
+Julia with little or no overhead (arrays are passed without making a copy).")
+ (license license:expat)))
+
(define-public julia-quadgk
(package
(name "julia-quadgk")
--
2.33.0
- [bug#51028] [PATCH 0/7] More julia packages, Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 1/7] gnu: Add julia-latexstrings., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 2/7] gnu: Add julia-pyplot.,
Efraim Flashner <=
- [bug#51028] [PATCH 3/7] gnu: Add julia-dataframes., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 4/7] gnu: Add julia-bson., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 5/7] gnu: Add julia-expronicon., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 6/7] gnu: Add julia-configurations., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 7/7] gnu: Add julia-structarrays., Efraim Flashner, 2021/10/05
- [bug#51028] [PATCH 0/7] More julia packages, zimoun, 2021/10/11