summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 14:35:17 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:49 +0100
commitaae4b50f432aaabfc1570601f5ebba20e28b0edf (patch)
tree60a3cb5d0547bdbe85f8dfbef5828b4cc596eabe /gnu/packages/python-check.scm
parent260269a0d42538476c310ae999d80e914ad21467 (diff)
gnu: python-re-assert: Switch to pyproject-build-system.
* gnu/packages/python-check.scm (python-re-assert) [build-system]: Use pyproject. [arguments]: Drop them. [native-inputs]: Remove python-covdefaults and python-coverage; add python-setuptools. Change-Id: Ifc6f24e45196988cf3741ce2cf7b489dbb0a13f3
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm10
1 files changed, 2 insertions, 8 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index c66be6cfafa..880bb8b11c3 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -3533,15 +3533,9 @@ libraries.")
(file-name (git-file-name name version))
(sha256
(base32 "1rssq4wpqmx1c17hjfx5l3sn3zmnlz9jffddiqrs4f6h7m6cadai"))))
- (build-system python-build-system)
- (arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (invoke "pytest" "-vv"))))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-covdefaults python-coverage python-pytest))
+ (list python-pytest python-setuptools))
(propagated-inputs
(list python-regex))
(home-page "https://github.com/asottile/re-assert")