diff options
author | Frederick Muriuki Muriithi | 2023-09-06 13:10:20 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-09-06 13:10:20 +0300 |
commit | 2a1cbd69761a2a32e1df525307b1aabc9b0fcb8e (patch) | |
tree | 75b12ea6065c09314501527f19f108d28806677a /gn | |
parent | ebd0a22dd7388379a530b4171e4bd47602d07ebc (diff) | |
download | guix-bioinformatics-2a1cbd69761a2a32e1df525307b1aabc9b0fcb8e.tar.gz |
gn: gn-auth: Update yoyo and mypy
Update yoyo and mypy to allow the use of Python-3.10
Diffstat (limited to 'gn')
-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 b2c6611..ab8f8bd 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -489,23 +489,23 @@ (when tests? (invoke "pytest" "-k" "unit_test"))))))) (native-inputs - (list python-mypy - python-pytest - python-pylint - python-hypothesis - python-pytest-mock - python-mypy-extensions)) + `(("python-mypy" ,python-mypy-0.981) + ("python-pytest" ,python-pytest) + ("python-pylint" ,python-pylint) + ("python-hypothesis" ,python-hypothesis) + ("python-pytest-mock" ,python-pytest-mock) + ("python-mypy-extensions" ,python-mypy-extensions))) (propagated-inputs - (list gunicorn - python-flask - python-redis - python-authlib - python-pymonad - yoyo-migrations - python-bcrypt ;; remove after removing all references - python-mysqlclient - python-argon2-cffi - python-email-validator)) + `(("gunicorn" ,gunicorn) + ("python-flask" ,python-flask) + ("python-redis" ,python-redis) + ("python-authlib" ,python-authlib) + ("python-pymonad" ,python-pymonad) + ("yoyo-migrations" ,yoyo-migrations-8.2.0) + ("python-bcrypt" ,python-bcrypt) ;; remove after removing all references + ("python-mysqlclient" ,python-mysqlclient) + ("python-argon2-cffi" ,python-argon2-cffi) + ("python-email-validator" ,python-email-validator))) (home-page "https://github.com/genenetwork/gn-auth") (synopsis "Authentication and Authorisation server for GeneNetwork services") (description "Authentication and Authorisation server for GeneNetwork services.") |