guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 22e3a72e8224fa4b9a04f7de2160c06729008a9f
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Dec 15 23:51:07 2025 +0000

    gnu: Add python-ipython-minimal.
    
    * gnu/packages/python-xyz.scm (python-ipython-minimal): New variable.
    
    Change-Id: Ib68f3a7f2d45064aa83c7d034011ce4b43391ab6
---
 gnu/packages/python-xyz.scm | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 27e250070c..194657900e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15249,6 +15249,16 @@ computing.")
                   texlive-xetex
                   texlive-xindy))))))
 
+;; A bare minimal package, mainly to use in tests and reduce closure
+;; size. Tests are left out in the main package to slim down native-inputs.
+(define-public python-ipython-minimal
+  (package/inherit python-ipython
+    (name "python-ipython-minimal")
+    (arguments
+     (list #:tests? #f))
+    (native-inputs
+     (list python-setuptools))))
+
 (define-public python-ipython-pygments-lexers
   (package
     (name "python-ipython-pygments-lexers")

Reply via email to