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 = "4.14.3";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "14cxlfl79i9bh3awsf4xgwr14ywm7lnrz2a81s7gp0if77nsx2kx";
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}