aboutsummaryrefslogtreecommitdiff
path: root/gn/packages
diff options
context:
space:
mode:
authorArun Isaac2024-02-26 11:44:42 +0000
committerArun Isaac2024-02-26 11:44:42 +0000
commit336799a9ea0d495693336283961f8853cf1cb614 (patch)
tree705fb388e6f60857084beb4fd6f8bb4af5e7e469 /gn/packages
parentd3b01e82a43507f7388e6b0397c324ebdf44bcf7 (diff)
downloadguix-bioinformatics-336799a9ea0d495693336283961f8853cf1cb614.tar.gz
gn: gn-auth: Use list-style inputs.
* gn/packages/genenetwork.scm (gn-auth)[native-inputs, propagated-inputs]: List them directly instead of using an association list.
Diffstat (limited to 'gn/packages')
-rw-r--r--gn/packages/genenetwork.scm32
1 files changed, 16 insertions, 16 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm
index 8d690f2..a316464 100644
--- a/gn/packages/genenetwork.scm
+++ b/gn/packages/genenetwork.scm
@@ -411,23 +411,23 @@
(when tests?
(invoke "pytest" "-k" "unit_test")))))))
(native-inputs
- `(("python-mypy" ,python-mypy)
- ("python-pytest" ,python-pytest)
- ("python-pylint" ,python-pylint)
- ("python-hypothesis" ,python-hypothesis)
- ("python-pytest-mock" ,python-pytest-mock)
- ("python-mypy-extensions" ,python-mypy-extensions)))
+ (list python-hypothesis
+ python-mypy
+ python-mypy-extensions
+ python-pylint
+ python-pytest
+ python-pytest-mock))
(propagated-inputs
- `(("gunicorn" ,gunicorn)
- ("python-flask" ,python-flask)
- ("python-redis" ,python-redis)
- ("python-authlib" ,python-authlib)
- ("python-pymonad" ,python-pymonad)
- ("yoyo-migrations" ,yoyo-migrations)
- ("python-flask-cors" ,python-flask-cors)
- ("python-mysqlclient" ,python-mysqlclient)
- ("python-argon2-cffi" ,python-argon2-cffi)
- ("python-email-validator" ,python-email-validator)))
+ (list gunicorn
+ python-argon2-cffi
+ python-authlib
+ python-email-validator
+ python-flask
+ python-flask-cors
+ python-mysqlclient
+ python-pymonad
+ python-redis
+ yoyo-migrations))
(home-page "https://github.com/genenetwork/gn-auth")
(synopsis "Authentication and Authorisation server for GeneNetwork services")
(description "Authentication and Authorisation server for GeneNetwork services.")