diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-02-25 18:04:42 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:15 +0200 |
commit | e78dfd6b7b403ca6eb73cf147fb5cf83f5bc6057 (patch) | |
tree | b151d013c6cbcb94a9f353c750a4d5bed87d8296 | |
parent | 6838baeffcf4222bab1b1b1f2b8edc0496e854cb (diff) |
gnu: python-ipympl: Update to 0.9.2.
* gnu/packages/jupyter.scm (python-ipympl): Update to 0.9.2.
[native-inputs]: Add python-hatchling.
-rw-r--r-- | gnu/packages/jupyter.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm index d5c298056c..6c2f549583 100644 --- a/gnu/packages/jupyter.scm +++ b/gnu/packages/jupyter.scm @@ -1055,13 +1055,13 @@ a notebook.") (define-public python-ipympl (package (name "python-ipympl") - (version "0.9.1") + (version "0.9.2") (source (origin (method url-fetch) (uri (pypi-uri "ipympl" version)) (sha256 - (base32 "11rppjdqzgs4pfiq8gww5xkpbk21fp86vvv839v56b9rqq06j2b4")))) + (base32 "12qgiy08klqb5gipm23yzh09p5g2k8ihcq2bprprdya84acw2rf8")))) (build-system python-build-system) (propagated-inputs (list python-ipython @@ -1072,7 +1072,7 @@ a notebook.") python-pillow python-traitlets)) (native-inputs - (list python-jupyter-packaging)) + (list python-hatchling python-jupyter-packaging)) (home-page "https://matplotlib.org/ipympl/") (synopsis "Matplotlib Jupyter Extension") (description "Leveraging the Jupyter interactive widgets framework, ipympl |