diff options
author | Efraim Flashner | 2020-06-04 06:39:47 -0500 |
---|---|---|
committer | Efraim Flashner | 2020-06-04 06:39:47 -0500 |
commit | ce0dd5075df243985259be06cca1bd302a3da275 (patch) | |
tree | e8184547f071cdef6c3cec807166b83f905c594d /gn/services | |
parent | 2d0841d7e10f987c21c95347477e32d2440abd9b (diff) | |
download | guix-bioinformatics-ce0dd5075df243985259be06cca1bd302a3da275.tar.gz |
genenetwork service: use mod-python-24
Diffstat (limited to 'gn/services')
-rw-r--r-- | gn/services/genenetwork.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gn/services/genenetwork.scm b/gn/services/genenetwork.scm index 4693152..28e51e9 100644 --- a/gn/services/genenetwork.scm +++ b/gn/services/genenetwork.scm @@ -8,7 +8,7 @@ (use-package-modules python) (define %mod-python-path - (file-append mod-python "/lib/python2.4/site-packages")) + (file-append mod-python-24 "/lib/python2.4/site-packages")) (operating-system (host-name "genenetwork") @@ -23,7 +23,7 @@ (firmware '()) (packages (cons* python-2.4 - mod-python + mod-python-24 python24-qtlreaper ;python24-htmlgen-gn python24-json-GN1 @@ -43,7 +43,7 @@ (modules (cons* (httpd-module (name "python_module") - (file (file-append mod-python "/modules/mod_python.so"))) + (file (file-append mod-python-24 "/modules/mod_python.so"))) %default-httpd-modules)) (extra-config (list "\ PythonPath \"sys.path+['" %mod-python-path "', '" (file-append genenetwork1 "/web/webqtl") "']\" |