123456789101112131415161718192021222324252627282930 |
- (define-public python-bokeh
- (package
- (name "python-bokeh")
- (version "2.1.1")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "bokeh" version))
- (sha256
- (base32
- "1bgv4na7ifq9wv9ivbd8f1jf0gmiw8bg8r64mj46nrsmiwibzyid"))))
- (build-system python-build-system)
- (propagated-inputs
- `(("python-dateutil" ,python-dateutil)
- ("python-jinja2" ,python-jinja2)
- ("python-numpy" ,python-numpy)
- ("python-packaging" ,python-packaging)
- ("python-pillow" ,python-pillow)
- ("python-pyyaml" ,python-pyyaml)
- ("python-tornado" ,python-tornado)
- ("python-typing-extensions"
- ,python-typing-extensions)))
- (home-page "http://github.com/bokeh/bokeh")
- (synopsis
- "Interactive plots and applications in the browser from Python")
- (description
- "Interactive plots and applications in the browser from Python")
- (license #f)))
|