diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-16 13:15:57 +0000 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:19:33 +0100 |
| commit | 7289e6b16e020270c0f4eba2a282b8c2e9fd6994 (patch) | |
| tree | 4854d32bd2666e3be893b34e2acf3de8bc8eb1ca /gnu/packages/python-xyz.scm | |
| parent | 6e8d2d28e9dbcaeca73c39d45c8db3cef6dfa39f (diff) | |
gnu: Remove python-jupyter-console-minimal.
Variable is not public and not in use by any other packages.
* gnu/packages/python-xyz.scm (python-jupyter-console-minimal): Delete variable.
Fixes: guix/guix#4881
Change-Id: I3b13ec6522f8c7c61a39e8f2262b652fbcb4210b
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d53b56b94ab..1649dc8f3db 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -18724,30 +18724,6 @@ Jupyter kernels. It also allows for console-based interaction with non-Python Jupyter kernels such as IJulia and IRKernel.") (license license:bsd-3))) -;; The python-ipython and python-jupyter-console require each other. To get -;; the functionality in both packages working, strip down the -;; python-jupyter-console package when using it as an input to python-ipython. -(define python-jupyter-console-minimal - (package/inherit python-jupyter-console - (name "python-jupyter-console-minimal") - (arguments - (substitute-keyword-arguments - (package-arguments python-jupyter-console) - ((#:phases phases) - `(modify-phases ,phases - (add-after 'install 'delete-bin - (lambda* (#:key outputs #:allow-other-keys) - ;; Delete the bin files, to avoid conflicts in profiles - ;; where python-ipython and python-jupyter-console are - ;; both present. - (delete-file-recursively - (string-append - (assoc-ref outputs "out") "/bin")))))))) - ;; Remove the python-ipython propagated input, to avoid the cycle - (propagated-inputs - (modify-inputs (package-propagated-inputs python-jupyter-console) - (delete "python-ipython"))))) - (define-public python-jsbeautifier (package (name "python-jsbeautifier") |
