diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-05-16 14:54:58 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-16 15:48:08 +0200 |
commit | 6a3d23c77a436fd5432b4f8d6aef532e503e225e (patch) | |
tree | 442ff161bb0d0ada96afbb5def234c97ad0675b5 /gnu | |
parent | f0373a0c94566e9883c001503300ac764071ad91 (diff) | |
download | guix-6a3d23c77a436fd5432b4f8d6aef532e503e225e.tar guix-6a3d23c77a436fd5432b4f8d6aef532e503e225e.tar.gz |
gnu: python-pari-jupyter: Do not propagate 'python-ipykernel'.
Failing that, Guix-Jupyter sees both kernels in environments containing
python-pari-jupyter and its ";;guix environment" command thus fails.
* gnu/packages/python-xyz.scm (python-pari-jupyter)[propagated-inputs]:
Move PYTHON-IPYKERNEL to...
[inputs]: ... here.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index cf75542f09..29b42ea3a0 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9289,10 +9289,8 @@ installing @code{kernelspec}s for use with Jupyter frontends.") "1ikqvv335qfrhmlji0iclci6pnm2c3fvnxf031jr1d68j79g6ypd")))) (build-system python-build-system) (arguments '(#:tests? #f)) ;no test suite - (propagated-inputs - (list python-ipykernel)) (inputs - (list pari-gp readline)) + (list pari-gp readline python-ipykernel)) (home-page "https://github.com/sagemath/pari-jupyter") (synopsis "Jupyter kernel for PARI/GP") (description "The package provides a PARI/GP kernel for Jupyter.") |