[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/455: gnu: python-pytest-qt: Update to 4.4.0.
From: |
guix-commits |
Subject: |
09/455: gnu: python-pytest-qt: Update to 4.4.0. |
Date: |
Mon, 20 Jan 2025 15:46:24 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit 23aa7ba596f947f859d9a3cdbf3bb7f9a6c9fd28
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Dec 16 16:30:36 2024 +0100
gnu: python-pytest-qt: Update to 4.4.0.
* gnu/packages/python-check.scm (python-pytest-qt): Update to 4.4.0.
[build-system]: Use pyproject-build-system.
[arguments]: Remove #:test-target; remove trailing #T from build phase.
[propagated-inputs]: Add python-pluggy and python-pytest.
[native-inputs]: Remove python-pytest and python-pytest-runner; add
python-pre-commit, python-setuptools, python-tox, and python-wheel.
Change-Id: Ibeca84e841264eb81cc7ba48b5e815d0b837cb4d
---
gnu/packages/python-check.scm | 21 ++++++++++++---------
1 file changed, 12 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 2fae13aa04..f70028c65f 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -2063,19 +2063,22 @@ libraries.")
(uri (pypi-uri "pytest-qt" version))
(sha256
(base32 "0i38qp2rqb44grbk9rn7zr5ffjvdlcl6k380759ji920m51632bn"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
- `(#:test-target "pytest"
- #:phases
- (modify-phases %standard-phases
+ (list
+ ;;#:test-target "pytest"
+ #:phases
+ '(modify-phases %standard-phases
(add-before 'check 'set-qpa
- (lambda _
- (setenv "QT_QPA_PLATFORM" "offscreen")
- #t)))))
+ (lambda _ (setenv "QT_QPA_PLATFORM" "offscreen"))))))
(propagated-inputs
- (list python-pyqt))
+ (list python-pluggy python-pyqt python-pytest))
(native-inputs
- (list python-pytest python-pytest-runner python-setuptools-scm))
+ (list python-pre-commit
+ python-setuptools
+ python-setuptools-scm
+ python-tox
+ python-wheel))
(home-page "https://github.com/pytest-dev/pytest-qt")
(synopsis "Pytest support for PyQt and PySide applications")
(description
- branch master updated (91b18baa42 -> 69d657f9c4), guix-commits, 2025/01/20
- 09/455: gnu: python-pytest-qt: Update to 4.4.0.,
guix-commits <=
- 11/455: gnu: Add python-time-machine., guix-commits, 2025/01/20
- 16/455: gnu: Add python-repoze-lru., guix-commits, 2025/01/20
- 23/455: gnu: Add python-devpi-client., guix-commits, 2025/01/20
- 01/455: gnu: python-msgspec: Update to 0.18.6., guix-commits, 2025/01/20
- 03/455: gnu: python-statmake: Remove obsolete build phase., guix-commits, 2025/01/20
- 02/455: gnu: python-cattrs: Update to 24.1.2., guix-commits, 2025/01/20
- 08/455: gnu: python-pyproject-api: Update to 1.8.0., guix-commits, 2025/01/20
- 12/455: gnu: python-pytest-subprocess: Update to 1.5.2., guix-commits, 2025/01/20
- 21/455: gnu: Add python-devpi-common., guix-commits, 2025/01/20
- 07/455: gnu: python-cachetools: Update to 5.5.0., guix-commits, 2025/01/20