guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Remove python-pdbpp.


From: guix-commits
Subject: branch master updated: gnu: Remove python-pdbpp.
Date: Thu, 11 Jul 2024 01:06:46 -0400

This is an automated email from the git hooks/post-receive script.

z572 pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 8cbc5e5bf0 gnu: Remove python-pdbpp.
8cbc5e5bf0 is described below

commit 8cbc5e5bf0ca35f12cf5bbf123efbc3b6a57ad44
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Thu Jul 11 12:57:33 2024 +0800

    gnu: Remove python-pdbpp.
    
    Fixes <https://issues.guix.gnu.org/72051>
    
    * gnu/packages/python-xyz.scm (python-pdbpp): Delete variable.
    
    Change-Id: Ide5dea642f12ff6f283f41e7a5ec637cf561d6af
---
 gnu/packages/python-xyz.scm | 53 ---------------------------------------------
 1 file changed, 53 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 93eeab8ea9..e1b2679e59 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8919,59 +8919,6 @@ debugger, with which it shares the same interface.")
 @code{fsspec} for IPFS.")
     (license license:expat)))
 
-(define-public python-pdbpp
-  ;; The latest release lacks support for Python 3.10; use the latest commit
-  ;; of the master branch (see: https://github.com/pdbpp/pdbpp/issues/503).
-  (let ((commit "e1c2e347cc55a6dd89e058e56a1366ada68884bc")
-        (revision "0"))
-    (package
-      (name "python-pdbpp")
-      (version (git-version "0.10.3" revision commit))
-      (source (origin
-                (method git-fetch)
-                (uri (git-reference
-                      (url "https://github.com/pdbpp/pdbpp";)
-                      (commit commit)))
-                (file-name (git-file-name name version))
-                (sha256
-                 (base32
-                  "1hql1ldwa9czml7zrnv6qdzgpywwav3a282dbvqypf108zvjsdiw"))))
-      (build-system python-build-system)
-      (arguments
-       (list
-        #:phases
-        #~(modify-phases %standard-phases
-            (add-before 'build 'pretend-version
-              (lambda _
-                (setenv "SETUPTOOLS_SCM_PRETEND_VERSION"
-                        #$(package-version this-package))))
-            (replace 'check
-              (lambda* (#:key tests? #:allow-other-keys)
-                (when tests?
-                  (invoke "pytest"
-                          "-k"
-                          (string-append
-                           ;; These tests seem to require a real TTY.
-                           "not interaction_restores_previous_sigint_handler "
-                           "and not python_m_pdb_uses_pdbpp"))))))))
-      (propagated-inputs
-       (list python-fancycompleter python-pygments python-wmctrl))
-      (native-inputs
-       (list python-pytest python-setuptools-scm))
-      (home-page "https://github.com/pdbpp/pdbpp";)
-      (synopsis "Drop-in replacement for pdb")
-      (description "Pdb++ is a drop-in replacement for @code{pdb}.  It
-includes the following improvements compared to @code{pdb}:
-@itemize
-@item auto-completion
-@item syntax highlighting of code listings
-@item sticky mode
-@item new commands to be used from the interactive (Pdb++) prompt
-@item smart command parsing
-@item additional convenience functions in the @code{pdb} module.
-@end itemize")
-      (license license:bsd-3))))
-
 (define-public python-pdftotext
   (package
     (name "python-pdftotext")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]