me
/
guix
Archived
1
0
Fork 0

gnu: python-pari-jupyter: Update to 1.4.0.

* gnu/packages/python-xyz.scm (python-pari-jupyter): Update to 1.4.0.
[source, home-page]: Adjust repo name.
Marius Bakke 2022-01-12 16:07:37 +01:00
parent 4633f343f6
commit 95b53cb5e8
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 5 additions and 7 deletions

View File

@ -8689,23 +8689,21 @@ installing @code{kernelspec}s for use with Jupyter frontends.")
(define-public python-pari-jupyter
(package
(name "python-pari-jupyter")
(version "1.3.2")
(version "1.4.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pari_jupyter" version))
(uri (pypi-uri "pari-jupyter" version))
(sha256
(base32
"1yash0p422nnin7z58b99d0p23nx79f5m0mainc9hsjg72jhdhr6"))))
"1hwjr66vfjsx28qmxrgsp3z0px1xqwxv53byvsrbwbjp4pbp79sz"))))
(build-system python-build-system)
(arguments '(#:tests? #f)) ;no test suite
(propagated-inputs
(list python-ipykernel))
(inputs
(list pari-gp readline))
(arguments
`(#:tests? #f)) ; no test suite
(home-page
"https://github.com/jdemeyer/pari_jupyter")
(home-page "https://github.com/jdemeyer/pari-jupyter")
(synopsis "Jupyter kernel for PARI/GP")
(description "The package provides a PARI/GP kernel for Jupyter.")
(license license:gpl3+)))