diff options
Diffstat (limited to '.guix/modules/gn-auth.scm')
-rw-r--r-- | .guix/modules/gn-auth.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.guix/modules/gn-auth.scm b/.guix/modules/gn-auth.scm index d9a2657..ec8e4a5 100644 --- a/.guix/modules/gn-auth.scm +++ b/.guix/modules/gn-auth.scm @@ -39,12 +39,13 @@ #:select? vcs-file?)) (build-system python-build-system) (arguments - `(#:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-k" "unit_test"))))))) + (list + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-k" "unit_test"))))))) (native-inputs (list python-mypy python-pytest |