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.4.1";
15
16 src = fetchPypi {
17 inherit pname version;
18 sha256 = "acc94f17452471ca3446c2ce491c4d1affb99b9ddd9eac4e05614ac4318f8780";
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}