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