This is an automated email from the git hooks/post-receive script. dannym pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new f168af92f7 gnu: Add python-mathicsscript. f168af92f7 is described below commit f168af92f771ff1c084441a99ba219a91599de4d Author: Danny Milosavljevic <dan...@friendly-machines.com> AuthorDate: Thu Dec 12 00:03:24 2024 +0100 gnu: Add python-mathicsscript. * gnu/packages/maths.scm (python-mathicsscript): New variable. Change-Id: Id98fe33f3e6fdef5fcdc2ea58b2f71f396b9ea23 --- gnu/packages/maths.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index ba03bf3209..810af1b18d 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -10575,3 +10575,37 @@ the Wolfram language.") to Wolfram.") (home-page "https://mathics.org/") (license license:gpl3+))) + +(define-public python-mathicsscript + (package + (name "python-mathicsscript") + (version "7.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "mathicsscript" version)) + (sha256 + (base32 "15ppg8sj03j63664npdqiv1lfk2mqnrqjb5817zjyy04z9s0kp7l")))) + (build-system pyproject-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'check 'setenv + (lambda _ + (setenv "HOME" "/tmp")))))) + (propagated-inputs (list python-click + python-colorama + python-columnize + python-mathics-pygments + python-mathics-scanner + python-mathics-core + python-networkx + python-prompt-toolkit + python-pygments + python-term-background)) + (native-inputs (list python-pytest)) + (home-page "https://mathics.org/") + (synopsis "Command-line interface to Mathics3") + (description "This package provides a command-line interface to +Mathics3.") + (license license:gpl3)))