diff options
author | Frederick Muriuki Muriithi | 2024-01-03 14:56:04 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-01-03 14:56:04 +0300 |
commit | 25cb9ad70155a08c088ff28bf54c06e12293105b (patch) | |
tree | a4ce9e3eb06dab0f5cec3304b115455339a14a21 /gn | |
parent | 250f5bb11be7596d77cb8993afb3cc7e741530d3 (diff) | |
download | guix-bioinformatics-25cb9ad70155a08c088ff28bf54c06e12293105b.tar.gz |
gnqc-py: Fix syntax error.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/genenetwork.scm | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index 1ad63c0..4e3dc21 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -368,17 +368,17 @@ (when tests? (invoke "pytest" "-k" "unit_test"))))))) (native-inputs - `(("python-mypy" ,python-mypy - "python-pylint" ,python-pylint - "python-pytest" ,python-pytest - "python-hypothesis" ,python-hypothesis))) + `(("python-mypy" ,python-mypy) + ("python-pylint" ,python-pylint) + ("python-pytest" ,python-pytest) + ("python-hypothesis" ,python-hypothesis))) (propagated-inputs - `(("gunicorn" ,gunicorn - "python-redis" ,python-redis - "python-flask" ,python-flask - "python-pyyaml" ,python-pyyaml - "python-jsonpickle" ,python-jsonpickle - "python-mysqlclient" ,python-mysqlclient))) + `(("gunicorn" ,gunicorn) + ("python-redis" ,python-redis) + ("python-flask" ,python-flask) + ("python-pyyaml" ,python-pyyaml) + ("python-jsonpickle" ,python-jsonpickle) + ("python-mysqlclient" ,python-mysqlclient))) (synopsis "GeneNetwork Quality Control Application") (description "GeneNetwork qc is a quality control application for the data files that |