summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-06 22:58:02 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-26 18:41:28 +0100
commitf517dabc088b6e45ebf5fe67ecf17e7ad07db8c8 (patch)
tree4f0124134e824c2dcc0e82b23a121f813af8eefb
parentf630990c851470a67884899baf0fe513ee128b9e (diff)
gnu: Remove python-pytest-pudb.
* gnu/packages/check.scm (python-pytest-pudb): Delete variable. Change-Id: Ib05baf2b54c8f9bc966cb137af79ddf3f2a48a11
-rw-r--r--gnu/packages/check.scm35
1 files changed, 0 insertions, 35 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 26ba096aafb..e17405d1884 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -4242,41 +4242,6 @@ to mark some tests as dependent from other tests. These tests will then be
skipped if any of the dependencies did fail or has been skipped.")
(license license:asl2.0)))
-(define-public python-pytest-pudb
- ;; PyPi does not include tests
- (let ((commit "a6b3d2f4d35e558d72bccff472ecde9c9d9c69e5"))
- (package
- (name "python-pytest-pudb")
- ;; Version mentioned in setup.py version field.
- (version "0.7.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/wronglink/pytest-pudb")
- (commit commit)))
- (file-name (git-file-name name commit))
- (sha256
- (base32
- "1c0pypxx3y8w7s5bz9iy3w3aablnhn81rnhmb0is8hf2qpm6k3w0"))))
- (build-system python-build-system)
- (propagated-inputs (list pudb))
- (native-inputs (list python-pytest))
- (arguments
- `(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key inputs outputs tests? #:allow-other-keys)
- (when tests?
- (add-installed-pythonpath inputs outputs)
- (invoke "pytest" "-v")))))))
- (home-page "https://github.com/wronglink/pytest-pudb")
- (synopsis "Pytest PuDB debugger integration")
- (description
- "@code{python-pytest-pudb} provides PuDB debugger integration based
-on pytest PDB integration. For example, the software developer can
-call pudb by running @code{py.test --pudb} from the command line or by
-including @code{pudb.set_trace} in their test file(s).")
- (license license:expat))))
-
(define-public python-pytest-datadir
(package
(name "python-pytest-datadir")