gnu: Add python-marsilea.

* gnu/packages/python-science.scm (python-marsilea): New variable.

Change-Id: I2f02691e45c57783edbd3c4654fdf4f8bafafb17
This commit is contained in:
Sharlatan Hellseher 2025-08-07 17:06:39 +01:00
parent d10e1abebb
commit 018b8a474e
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1602,6 +1602,39 @@ legends for @code{matplotlib}.")
neuronal models")
(license license:bsd-3)))
(define-public python-marsilea
(package
(name "python-marsilea")
(version "0.5.4")
(source
(origin
(method git-fetch) ;no tests in PyPI archive
(uri (git-reference
(url "https://github.com/Marsilea-viz/marsilea")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "09pyfx0gn46ypsp991d3n4a4xx6zlbpss078lw6yywnhl834v2i0"))))
(build-system pyproject-build-system)
(native-inputs
(list python-hatchling
python-pytest))
(propagated-inputs
(list python-legendkit
python-matplotlib
python-numpy
python-pandas
python-platformdirs
python-scipy
python-seaborn))
(home-page "https://github.com/Marsilea-viz/marsilea")
(synopsis "Declarative creation of composable visualizations")
(description
"Marsilea is a Python library for creating composable visualizations in a
declarative way. It is built on top of Matplotlib and provides a high-level
API for you to puzzle different visualizations together like logo.")
(license license:expat)))
(define-public python-meshzoo
(package
(name "python-meshzoo")