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