diff options
author | Frederick Muriuki Muriithi | 2023-08-30 13:21:26 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-08-30 13:21:26 +0300 |
commit | 39da338e6dc84c4b79a9a924d36e96d165c17877 (patch) | |
tree | efd2647e7850afdd213fba12d0eae6b519b49c33 | |
parent | 23eadc951e924a049551d7b0e8763ccd2c2f3816 (diff) | |
download | guix-bioinformatics-39da338e6dc84c4b79a9a924d36e96d165c17877.tar.gz |
Replace `(...) with (list ...): Fixes "undefined gexp" failure.
Replace the backquoted expression in the (arguments ...) section of
the package definition to fix the error where the build could not find
the variable gexp
-rw-r--r-- | gn/packages/gn-auth.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gn/packages/gn-auth.scm b/gn/packages/gn-auth.scm index 05accfb..a87b22c 100644 --- a/gn/packages/gn-auth.scm +++ b/gn/packages/gn-auth.scm @@ -38,12 +38,13 @@ "036k561kvzb6nwr1k1pd9fi20v4d7cnj5jdps6a30yjprfvj8y4l"))))) (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 |