diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-10 15:40:04 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:19:09 +0000 |
commit | a2fbf6879c7aefb391952a3478a05a1cfb9801ed (patch) | |
tree | 6b296eb7da19de68151f9fd1ae17b767a2b828ea /gnu/packages/check.scm | |
parent | 8f36612d5b94616a7fbc3ae65b5cf331b2853e2c (diff) | |
download | guix-a2fbf6879c7aefb391952a3478a05a1cfb9801ed.tar.gz guix-a2fbf6879c7aefb391952a3478a05a1cfb9801ed.zip |
gnu: Remove python-pytest-next.
* gnu/packages/check.scm (python-pytest-next): Delete variable.
* gnu/packages/python-science.scm (python-pandas-2) [native-inputs]:
Remove python-pytest-next; add python-pytest.
* gnu/packages/python-xyz.scm (python-hy) [native-inputs]: Remove
python-pytest-next; add python-pytest.
Change-Id: I57e14aa11c2e3cd1d8e8119f566b49fd902c7957
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index f1adfbb558..3fc3f1de5b 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -1589,20 +1589,6 @@ and functions, detailed info on failing assert statements, modular fixtures, and many external plugins.") (license license:expat))) -(define-public python-pytest-next - (package/inherit python-pytest - (name "python-pytest") - (version "7.3.2") - (source - (origin - (method url-fetch) - (uri (pypi-uri "pytest" version)) - (sha256 - (base32 "02q32y67nflrmk9snmibq5kmqcbgfm29k9wm0yw0ia2vqly0m6gf")))) - (propagated-inputs - (modify-inputs (package-propagated-inputs python-pytest) - (append python-exceptiongroup))))) - (define-deprecated python-pytest-6 python-pytest) (export python-pytest-6) |