diff options
author | Frederick Muriuki Muriithi | 2025-02-25 16:54:35 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-02-25 16:54:35 -0600 |
commit | 4eaf3a6faf8cd3542b74270a62610e785ecbfe41 (patch) | |
tree | 985b7baeeaf38efd77e21630108b21ca4478baaa /gn | |
parent | d2b533ab02c4f0e5a4c0b89c5fe3f515a65ec6d1 (diff) | |
download | guix-bioinformatics-4eaf3a6faf8cd3542b74270a62610e785ecbfe41.tar.gz |
python-flask-session: Provide stop-gap to fix build failures.
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/genenetwork.scm | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index 9c5b0a5..2ea69ea 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -191,6 +191,17 @@ (description "GeneNetwork3 API for data science and machine learning.") (license license:agpl3+)))) + +(define-public gn:python-flask-session + ;; This is a stop-gap to get the applications building with the guix channel + ;; set to 61428cc. + ;; Remove this as soon as the applications are building with mainline + ;; python-flask-session. + (package + (inherit python-flask-session) + (name "python-flask-session-0.8.0") + (version "0.8.0"))) + (define-public genenetwork2 (let ((commit "96433ed20e02d6f8ea592d765521c24de84d5a28") (revision "4")) @@ -286,7 +297,8 @@ python-cssselect python-flask python-flask-debugtoolbar - python-flask-session + ;;python-flask-session + gn:python-flask-session python-htmlgen python-ijson python-jinja2 @@ -476,7 +488,8 @@ python-pymonad python-jsonpickle python-mysqlclient - python-flask-session + ;;python-flask-session + gn:python-flask-session javascript-jquery javascript-bootstrap javascript-datatables |