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