[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
228/232: gnu: Add python-ipdb.
From: |
guix-commits |
Subject: |
228/232: gnu: Add python-ipdb. |
Date: |
Sun, 24 Apr 2022 23:59:17 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit 80e5e1ed8e54162bcf436b613dfc5ddd6d516c7a
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Apr 22 21:41:39 2022 -0400
gnu: Add python-ipdb.
* gnu/packages/python-xyz.scm (python-ipdb): New variable.
---
gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 52598b841a..7bcdab5b69 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6224,6 +6224,32 @@ to the interactive prompt. It is an extension of the
@code{rlcompleter}
module from the standard Python library.")
(license license:bsd-3)))
+(define-public python-ipdb
+ (package
+ (name "python-ipdb")
+ (version "0.13.9")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "ipdb" version))
+ (sha256
+ (base32 "1ibql99agjf2gj7y0svzd5m0h81hailf4p3sj3yl9i1i8ykdj6wm"))))
+ (build-system python-build-system)
+ (arguments
+ (list #:phases #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "unittest"
"discover")))))))
+ (propagated-inputs (list python-ipython python-toml python-decorator))
+ (home-page "https://github.com/gotcha/ipdb")
+ (synopsis "IPython-enhanced Python debugger (pdb)")
+ (description "@code{ipdb} exports functions to access the IPython
+debugger, which features tab completion, syntax highlighting, better
+tracebacks and better introspection than Python's standard @command{pdb}
+debugger, with which it shares the same interface.")
+ (license license:bsd-3)))
+
(define-public python-pdbpp
(package
(name "python-pdbpp")
- 199/232: gnu: weasyprint: Update to 54.3., (continued)
- 199/232: gnu: weasyprint: Update to 54.3., guix-commits, 2022/04/24
- 203/232: gnu: setzer: Add python-wrapper to fix build., guix-commits, 2022/04/24
- 209/232: gnu: python-flask-login: Update to 0.6.0., guix-commits, 2022/04/24
- 210/232: snippets: Add a 'remove' snippet., guix-commits, 2022/04/24
- 211/232: gnu: python2-sqlalchemy: Skip a failing test., guix-commits, 2022/04/24
- 217/232: gnu: python-sphinx-click: Update to 4.0.3 and enable tests., guix-commits, 2022/04/24
- 220/232: gnu: python-sphinx-argparse: Update to 0.3.1., guix-commits, 2022/04/24
- 223/232: gnu: Add python-nptyping., guix-commits, 2022/04/24
- 225/232: gnu: python-sphinxext-opengraph: Update to 0.6.3., guix-commits, 2022/04/24
- 227/232: gnu: python-numpy-documentation: Overhaul package definition., guix-commits, 2022/04/24
- 228/232: gnu: Add python-ipdb.,
guix-commits <=
- 232/232: gnu: python-matplotlib-documentation: Fix build., guix-commits, 2022/04/24