gnu: Add python-pytest-next.

* gnu/packages/check.scm (python-pytest-next): New variable.
This commit is contained in:
Nicolas Graves 2023-12-13 22:56:31 +01:00 committed by Ricardo Wurmus
parent 925e6d4072
commit 2b5cb248d3
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -1278,6 +1278,20 @@ (define-public python-pytest
and many external plugins.") and many external plugins.")
(license license:expat))) (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) (define-deprecated python-pytest-6 python-pytest)
(export python-pytest-6) (export python-pytest-6)