aboutsummaryrefslogtreecommitdiff
path: root/gn
diff options
context:
space:
mode:
authorjgart2021-12-07 16:34:41 -0500
committerjgart2021-12-07 16:34:41 -0500
commitc56352759743238b27773ab2c254257b05bd97e7 (patch)
tree2b4dec1714f7d247c133c8a1f9034ad2558255ef /gn
parent8bbe629faaf1e1ccf42c9d6b368d6f11716019ea (diff)
downloadguix-bioinformatics-c56352759743238b27773ab2c254257b05bd97e7.tar.gz
remove pudb
https://issues.guix.gnu.org/52177
Diffstat (limited to 'gn')
-rw-r--r--gn/packages/python.scm39
1 files changed, 0 insertions, 39 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index bc9c904..fe188ae 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -1819,42 +1819,3 @@ useful information for debugging.")
The goal of the project is to parse everything in the Pip requirement
file format spec.")
(license license:bsd-3)))
-
-(define-public pudb
- (package
- (name "pudb")
- (version "2021.2")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "pudb" version))
- (sha256
- (base32 "0p16pvzfa3w02ybg3n0iy5rs23z4rz4a42lb8wh3mcq62y9ik2w7"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-before 'check 'fix-read-only-home
- (lambda _
- (setenv "HOME" "/tmp")))
- (replace 'check
- (lambda* (#:key inputs outputs tests? #:allow-other-keys)
- (when tests?
- (add-installed-pythonpath inputs outputs)
- (invoke "pytest")))))))
- (native-inputs
- `(("python-numpy" ,python-numpy)
- ("python-pytest" ,python-pytest)
- ("python-pytest-mock" ,python-pytest-mock)))
- (propagated-inputs
- `(("python-jedi" ,python-jedi)
- ("python-pygments" ,python-pygments)
- ("python-urwid" ,python-urwid)
- ("python-urwid-readline" ,python-urwid-readline)))
- (home-page "https://documen.tician.de/pudb/")
- (synopsis "Console-based Python debugger")
- (description
-"@command{pudb} is a full-screen, console-based Python debugger
-providing all the niceties of modern GUI-based debuggers in a more
-lightweight and keyboard-friendly package.")
- (license license:expat)))