diff options
author | Muriithi Frederick Muriuki | 2018-08-07 09:10:09 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-08-07 09:10:09 +0300 |
commit | 8356cec770ff2b05021620cf92132ca3630026d0 (patch) | |
tree | 795ee635c9d06346bbc6c53db81d7712b5ce49d3 /gn/packages/edash.scm | |
parent | bfd171495846d6ced1988bb9a5a0de3daa5681a1 (diff) | |
download | guix-bioinformatics-8356cec770ff2b05021620cf92132ca3630026d0.tar.gz |
gn: Add gunicorn as dependency
* gn/packages/edash.scm (gunicorn): New dependency
Diffstat (limited to 'gn/packages/edash.scm')
-rw-r--r-- | gn/packages/edash.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gn/packages/edash.scm b/gn/packages/edash.scm index 8f9a6c8..c98452b 100644 --- a/gn/packages/edash.scm +++ b/gn/packages/edash.scm @@ -10,7 +10,8 @@ #:use-module (gnu packages compression) #:use-module (gnu packages time) #:use-module (gnu packages check) - #:use-module (gn packages web)) + #:use-module (gn packages web) + #:use-module (gn packages python)) (define-public python-s3transfer-0.1.13 (package @@ -101,9 +102,10 @@ interface to the Amazon Web Services (AWS) API.") (build-system trivial-build-system) (native-inputs `(("unzip" ,unzip) ("source" ,source))) - (inputs `(("sassc" ,sassc))) + ;;(inputs `(("sassc" ,sassc))) (propagated-inputs `(("python" ,python) + ("gunicorn" ,gunicorn) ("python-wrapper" ,python-wrapper) ("python-elasticsearch" ,python-elasticsearch) ("python-flask" ,python-flask) @@ -113,7 +115,7 @@ interface to the Amazon Web Services (AWS) API.") ("python-misaka" ,python-misaka) ("python-pygit2" ,python-pygit2) ("web-bootstrap" ,web-bootstrap) - ("sassc" ,sassc) + ;;("sassc" ,sassc) ("python-boto3" ,python-boto3) ("python-pytest" ,python-pytest))) (arguments |