mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add python-cplot.
* gnu/packages/python-xyz.scm (python-cplot): New variable. Change-Id: I8e634799954b120e00d900ae26b16af1717d4474 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
e30385d8d7
commit
66685821dc
1 changed files with 25 additions and 0 deletions
|
@ -8356,6 +8356,31 @@ (define-public python-matplotx
|
||||||
clean plots with a minimalistic style.")
|
clean plots with a minimalistic style.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-cplot
|
||||||
|
(package
|
||||||
|
(name "python-cplot")
|
||||||
|
(version "0.9.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch) ;for tests
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/nschloe/cplot")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0zk7hpq358sbympmkms7w2wjs7nw8mdfvkvdasblg2nhqayv42qz"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(propagated-inputs (list python-matplotlib
|
||||||
|
python-matplotx
|
||||||
|
python-npx
|
||||||
|
python-numpy))
|
||||||
|
(native-inputs (list python-pytest))
|
||||||
|
(home-page "https://github.com/nschloe/cplot")
|
||||||
|
(synopsis "Plot complex-valued functions")
|
||||||
|
(description "@code{cplot} is a Python library for plotting
|
||||||
|
complex-valued functions.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public python-pysnptools
|
(define-public python-pysnptools
|
||||||
(package
|
(package
|
||||||
(name "python-pysnptools")
|
(name "python-pysnptools")
|
||||||
|
|
Loading…
Reference in a new issue