diff options
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/edash.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gn/packages/edash.scm b/gn/packages/edash.scm index b19042a..c2c5f20 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,11 @@ 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) ("python-jinja2" ,python-jinja2) @@ -111,8 +114,9 @@ interface to the Amazon Web Services (AWS) API.") ("python-misaka" ,python-misaka) ("python-pygit2" ,python-pygit2) ("web-bootstrap" ,web-bootstrap) - ("sassc" ,sassc) - ("python-boto3" ,python-boto3))) + ;;("sassc" ,sassc) + ("python-boto3" ,python-boto3) + ("python-pytest" ,python-pytest))) (arguments `(#:modules ((guix build utils)) #:builder |