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

commit 3fb0555a425ab1aedb1cc13e70b4e95dc2a520f0
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 5ace4903dc..2fe25d1005 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