diff options
author | Frederick Muriuki Muriithi | 2023-03-08 10:20:51 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-03-08 10:20:51 +0300 |
commit | d530a17d2a699e7fbd6dc173949532274d9557e5 (patch) | |
tree | ae3a831defa0ea2918994118a047a0070c2165bc /gn | |
parent | 00a61373e1eb326d2568ef6a51cf452864d429da (diff) | |
download | guix-bioinformatics-d530a17d2a699e7fbd6dc173949532274d9557e5.tar.gz |
gn: genenetwork3: Add python-argon-cffi
As part of improving the security of passwords, this commit adds
python-argon-cffi that enables use of the better Argon2 password
hashing algorithm, rather than the dated bcrypt that is a tad
vulnerable to offline cracking.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/genenetwork.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index 075c3da..15797d2 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -139,7 +139,8 @@ python-wrapper csvdiff gn-rust-correlation - python-bcrypt + python-bcrypt ;; Replace use of bcrypt with argon below + python-argon2-cffi python-flask python-flask-cors ;; Not working in Python > 3.8 |