me
/
guix
Archived
1
0
Fork 0

gnu: Add python-perfplot.

* gnu/packages/python-xyz.scm (python-perfplot): New variable.

Change-Id: I04266dfd7081bd3f917a48b2667137b829680498
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Felix Gruber 2023-11-04 15:02:34 +00:00 committed by Ludovic Courtès
parent 66685821dc
commit 7068bb376f
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 24 additions and 0 deletions

View File

@ -8381,6 +8381,30 @@ clean plots with a minimalistic style.")
complex-valued functions.")
(license license:gpl3+)))
(define-public python-perfplot
(package
(name "python-perfplot")
(version "0.10.2")
(source (origin
(method url-fetch)
(uri (pypi-uri "perfplot" version))
(sha256
(base32
"0hbyv17f9ra6l6albcrqx4rylmfv2m6z4qsnhb4bar256dralvfp"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-matplotlib
python-matplotx
python-numpy
python-rich))
(native-inputs (list python-flit-core
python-pytest))
(home-page "https://github.com/nschloe/perfplot")
(synopsis "Performance plots for Python code snippets")
(description "@code{perfplot} extends Python's timeit by testing
snippets with input parameters (e.g., the size of an array) and plotting
the results.")
(license license:gpl3+)))
(define-public python-pysnptools
(package
(name "python-pysnptools")