diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-07-20 21:28:44 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-28 10:28:32 +0100 |
commit | ec16c5778fdbd9fed5ce95b2cfb959afd51e915e (patch) | |
tree | 9ecec20525aa21e6de2231656a5a81eb343c90fb | |
parent | 54717bb5b3c06c9667efafb9410cc5122f36a25f (diff) |
gnu: Add python-mathics3-notebook-frontends.
* gnu/packages/maths.scm (python-mathics3-notebook-frontends): New variable.
Change-Id: If3b7857a042c42ec6325ebb35a21fa31a3d33620
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/maths.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index c6584330e6..550ca02b40 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -11356,6 +11356,36 @@ Mathics3.") (description "This package provides a Django front end for Mathics3.") (license license:gpl3))) +(define-public python-mathics3-notebook-frontends + (let ((commit "63b90a07704acab5b04acc7a9335a8a88916c402") ; no releases + (revision "0")) + (package + (name "python-mathics3-notebook-frontends") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Mathics3/Mathics3-notebook-frontends") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02smq8w0m3kj1xssbyd7kl17b34mk1jzy9ds7fsqb54qa5pba78q")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-mathics-core)) + (arguments + (list #:tests? #f)) ; no tests + (native-inputs + (list python-setuptools + python-wheel)) + (home-page "https://mathics.org/") + (synopsis "Mathics frontend for Jupyter Notebook") + (description + "This package provides a Mathics3 frontend for +@url{https://jupyter.org/, Jupyter Notebook} and @url{https://marimo.io/, +Marimo}.") + (license license:gpl3+)))) + (define-public lie (package (name "lie") |