From 2088c135d4e58ea18a82e44cb2de1c4e10492900 Mon Sep 17 00:00:00 2001 From: jgart Date: Thu, 11 Jul 2024 16:15:15 -0500 Subject: gnu: python-typed-ast: Use new style. * gnu/packages/python-xyz.scm (python-typed-ast) [arguments]: Use new style. Change-Id: I6817270eca0c19bc786aa77460759f32d47a2948 --- gnu/packages/python-xyz.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gnu/packages/python-xyz.scm') diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 115ccef217..daaa521568 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26314,12 +26314,12 @@ (define-public python-typed-ast (file-name (git-file-name name version)))) (build-system python-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-vv"))))))) + (list #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-vv"))))))) (native-inputs (list python-pytest)) (home-page "https://github.com/python/typed_ast") (synopsis "Fork of Python @code{ast} modules with type comment support") -- cgit v1.2.3