gnu: Add pytest-7.1.

* gnu/packages/check.scm (python-pytest-7.1): New variable.

Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
Sharlatan Hellseher 2022-10-19 21:22:37 +01:00 committed by Liliana Marie Prikler
parent d49d21654a
commit 64b342ab32
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -39,6 +39,7 @@
;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr>
;;; Copyright © 2022 Maxime Devos <maximedevos@telenet.be>
;;; Copyright © 2022 David Elsing <david.elsing@posteo.net>
;;; Copyright © 2022 Sharlatan Hellseher <sharlatanus@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -1093,6 +1094,28 @@ (define-public python-pytest
(define-public python-pytest-6 python-pytest)
;; Astropy started using hard dependencies for Pytest 7+, which might
;; happen for some other projects. It could be set as default in staging.
(define-public python-pytest-7.1
(package
(inherit python-pytest)
(version "7.1.3")
(name "python-pytest")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pytest" version))
(sha256
(base32
"0f8c31v5r2kgjixvy267n0nhc4xsy65g3n9lz1i1377z5pn5ydjg"))))
(arguments
(substitute-keyword-arguments (package-arguments python-pytest)
((#:phases phases #~%standard-phases)
#~(modify-phases #$phases
(add-before 'build 'pretend-version
(lambda _
(setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))))))))
(define-public python-pytest-bootstrap
(package
(inherit python-pytest)