diff options
author | Arun Isaac | 2024-02-26 11:44:42 +0000 |
---|---|---|
committer | Arun Isaac | 2024-02-26 11:44:42 +0000 |
commit | 336799a9ea0d495693336283961f8853cf1cb614 (patch) | |
tree | 705fb388e6f60857084beb4fd6f8bb4af5e7e469 | |
parent | d3b01e82a43507f7388e6b0397c324ebdf44bcf7 (diff) | |
download | guix-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.
-rw-r--r-- | gn/packages/genenetwork.scm | 32 |
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.") |