sharlatan pushed a commit to branch python-team
in repository guix.
commit 1f103f1b8036b0c84b7953e7489d4345c781fb14
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri May 10 00:54:07 2024 +0200
gnu: python-uqbar: Improve package style.
* gnu/packages/graphviz.scm (python-uqbar): Improve package style.
[build-system]: Move to pyproject-build-system.
[arguments]: Convert 'check phase replacement to <#:test-flags>.
Change-Id: I536e60438e3f2d5592ab9cd34fe66104cfd117e2
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/graphviz.scm | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/graphviz.scm b/gnu/packages/graphviz.scm
index b438c86b5c..f0bbe772c9 100644
--- a/gnu/packages/graphviz.scm
+++ b/gnu/packages/graphviz.scm
@@ -213,15 +213,9 @@ structure and layout algorithms.")
(base32
"0c573nzpm51qgz2g296f8pw8ys0i3r6daynxk06zagk5l5fgw9ar"))
(patches (search-patches "python-uqbar-python3.10.patch"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "python" "-m" "pytest" "tests"))
- #t)))))
+ (list #:test-flags '(list "tests")))
(native-inputs
(list graphviz
python-flake8