diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-15 23:51:07 +0000 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:19:29 +0100 |
| commit | c699eb12d9c318416db5bc827b162d69a26108ca (patch) | |
| tree | 0313ea76fab2238f693b9a663d8acd503be5df61 /gnu/packages/python-xyz.scm | |
| parent | 2bb291679b7b90d169ecd05a7a4f939b4e8391d9 (diff) | |
gnu: Add python-ipython-minimal.
* gnu/packages/python-xyz.scm (python-ipython-minimal): New variable.
Change-Id: Ib68f3a7f2d45064aa83c7d034011ce4b43391ab6
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7637ddae042..ea7f2833872 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15295,6 +15295,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") |
