diff options
author | Munyoki Kilyungi | 2023-09-05 14:24:48 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2023-09-05 14:24:48 +0300 |
commit | ebd0a22dd7388379a530b4171e4bd47602d07ebc (patch) | |
tree | d55235a01614e5a7f58a58e7cf542624dcfa493e /gn | |
parent | 563c842a760c60c5e4f3f46e282f7994903a64df (diff) | |
download | guix-bioinformatics-ebd0a22dd7388379a530b4171e4bd47602d07ebc.tar.gz |
gn: genenetwork: Update mypy and yoyo
* gn/packages/genenetwork.scm: Import (guix packages).
(genenetwork3): Use yoyo-migrations v8.2.0 and python-mypy v0.981.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/genenetwork.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index c7dba3b..b2c6611 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -14,6 +14,7 @@ #:use-module (guix scripts graph) #:use-module (guix store) #:use-module (guix gexp) + #:use-module (guix packages) #:use-module (gnu packages) #:use-module (gnu packages base) #:use-module (gnu packages bioconductor) @@ -128,7 +129,7 @@ (list python-click)) (native-inputs `(("python-hypothesis" ,python-hypothesis) - ("python-mypy" ,python-mypy) + ("python-mypy" ,python-mypy-0.981) ("python-mypy-extensions" ,python-mypy-extensions) ("python-pylint" ,python-pylint) ("python-pytest" ,python-pytest) @@ -169,7 +170,7 @@ ("r-ctl" ,r-ctl) ("rust-qtlreaper" ,rust-qtlreaper) ("diffutils" ,diffutils) - ("yoyo-migrations" ,yoyo-migrations))) + ("yoyo-migrations" ,yoyo-migrations-8.2.0))) (build-system python-build-system) (arguments (list #:phases |