[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
228/242: gnu: Add python-ipdb.
From: |
guix-commits |
Subject: |
228/242: gnu: Add python-ipdb. |
Date: |
Thu, 12 May 2022 14:14:48 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit dfe81d0f812e012cb0cb7d6c89f8aea03b733038
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 1140e29790..e99587cf67 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6278,6 +6278,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")
- 180/242: gnu: python-celery: Update to 5.2.6 and enable tests., (continued)
- 180/242: gnu: python-celery: Update to 5.2.6 and enable tests., guix-commits, 2022/05/12
- 179/242: gnu: python-kombu: Update to 5.2.4., guix-commits, 2022/05/12
- 191/242: gnu: Add python-crccheck., guix-commits, 2022/05/12
- 203/242: gnu: setzer: Add python-wrapper to fix build., guix-commits, 2022/05/12
- 200/242: gnu: seed: Use webkitgtk-with-libsoup2., guix-commits, 2022/05/12
- 210/242: snippets: Add a 'remove' snippet., guix-commits, 2022/05/12
- 221/242: gnu: python-sphinx-cloud-sptheme: Update to 1.10.1 [still broken]., guix-commits, 2022/05/12
- 223/242: gnu: Add python-nptyping., guix-commits, 2022/05/12
- 220/242: gnu: python-sphinx-argparse: Update to 0.3.1., guix-commits, 2022/05/12
- 213/242: gnu: python-numpydoc: Update to 1.2.1., guix-commits, 2022/05/12
- 228/242: gnu: Add python-ipdb.,
guix-commits <=
- 227/242: gnu: python-numpy-documentation: Overhaul package definition., guix-commits, 2022/05/12
- 231/242: gnu: Add texlive-underscore., guix-commits, 2022/05/12
- 230/242: gnu: Add python-mpl-sphinx-theme., guix-commits, 2022/05/12
- 240/242: gnu: Add python-sanic-bootstrap., guix-commits, 2022/05/12
- 234/242: gnu: python-qtconsole: Update to 5.3.0., guix-commits, 2022/05/12
- 235/242: gnu: python-pygments: Update to 2.12.0., guix-commits, 2022/05/12
- 233/242: gnu: python-qtpy: Update to 2.0.1., guix-commits, 2022/05/12
- 242/242: gnu: python-sanic: Update to 21.12.1., guix-commits, 2022/05/12
- 207/242: gnu: python-pingouin: Update to 0.5.1., guix-commits, 2022/05/12
- 208/242: gnu: python-flask-wtf: Update to 1.0.1., guix-commits, 2022/05/12