1{ lib
2, buildPythonPackage
3, fetchPypi
4, decorator
5, nbformat
6, pytz
7, requests
8, retrying
9, six
10}:
11
12buildPythonPackage rec {
13 pname = "plotly";
14 version = "3.1.1";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "2e565c8907ea6f9c517423cf5452e4f4b85635bd0dd400aae943339c826d4176";
19 };
20
21 propagatedBuildInputs = [
22 decorator
23 nbformat
24 pytz
25 requests
26 retrying
27 six
28 ];
29
30 # No tests in archive
31 doCheck = false;
32
33 meta = {
34 description = "Python plotting library for collaborative, interactive, publication-quality graphs";
35 homepage = https://plot.ly/python/;
36 license = with lib.licenses; [ mit ];
37 };
38}