summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
author宋文武 <iyzsong@member.fsf.org>2025-01-14 15:13:09 +0800
committerRicardo Wurmus <rekado@elephly.net>2025-01-20 21:37:51 +0100
commit85cd4d2311e103e1b9d333f2f862a1860854f9d9 (patch)
tree4927e5a014e3c2fbd9edf6872b59c8231a95438b /gnu/packages/python-check.scm
parent211ec3abaac1791e8bd01ce491634d7db727d9fa (diff)
gnu: Remove python-pytest-toolbox.
Archived in 2022.09, won't work with current pytest. * gnu/packages/python-check.scm (python-pytest-toolbox): Remove variable. Change-Id: I27ba20c3c4b796d3a78585fbec91a1ed04e33632
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm37
1 files changed, 0 insertions, 37 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index aabb939287e..1027aa1a00f 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1740,43 +1740,6 @@ rounds that are calibrated to the chosen timer.")
service processes for your tests with pytest.")
(license license:expat)))
-(define-public python-pytest-toolbox
- (package
- (name "python-pytest-toolbox")
- (version "0.4")
- (source
- (origin
- ;; No tests in the PyPI tarball.
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/samuelcolvin/pytest-toolbox")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "1wqkr3g5gmqdxmhzfsxbwy8pm3cadaj6a8cxq58w9bacly4hqbh0"))))
- (build-system pyproject-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-before 'check 'pre-check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (substitute* "setup.cfg"
- ((".*timeout.*") ""))))))))
- (native-inputs
- (list python-pydantic
- python-pytest
- python-pytest-isort
- python-setuptools
- python-wheel))
- (home-page "https://github.com/samuelcolvin/pytest-toolbox")
- (synopsis "Numerous useful plugins for Pytest")
- (description
- "Pytest Toolbox contains many useful plugins for Pytest. Among them are
-new fixtures, new methods and new comparison objects.")
- (license license:expat)))
-
(define-public python-pytest-aiohttp
(package
(name "python-pytest-aiohttp")