diff options
author | Pjotr Prins | 2024-06-20 07:18:07 -0500 |
---|---|---|
committer | Pjotr Prins | 2024-06-20 07:18:07 -0500 |
commit | 0362ee068a39ce9a5fd6f0fba9cd5586211f07f1 (patch) | |
tree | 8a9dd27b6bbacc771a7392a066839849a5ed455f /gn | |
parent | 22a779d83b39158459055b22a6d75e770054784c (diff) | |
download | guix-bioinformatics-0362ee068a39ce9a5fd6f0fba9cd5586211f07f1.tar.gz |
genecup: use keras without tests
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/ratspub.scm | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/gn/packages/ratspub.scm b/gn/packages/ratspub.scm index 726bc0b..19b70c2 100644 --- a/gn/packages/ratspub.scm +++ b/gn/packages/ratspub.scm @@ -179,6 +179,20 @@ gene-keyword relationships are presented as an interactive graph and a table.") `(modify-phases ,phases (delete 'check)))))))) +(define-public python-keras-no-tests + (hidden-package + (package + (inherit python-keras) + (source + (origin + (inherit (package-source python-keras)))) + (arguments + (substitute-keyword-arguments (package-arguments python-keras) + ((#:phases phases) + `(modify-phases ,phases + (delete 'check)))))))) + + (define-public hrdp-project (package (name "hrdp-project") @@ -370,7 +384,7 @@ if __name__ == '__main__': ("inetutils" ,inetutils) ("python-bcrypt" ,python-bcrypt) ("python-flask-sqlalchemy" ,python-flask-sqlalchemy) - ("python-keras" ,python-keras-for-ratspub) + ("python-keras" ,python-keras-no-tests) ("python-nltk" ,python-nltk) ("python-pandas" ,python-pandas) ("python-regex" ,python-regex) |