summary refs log tree commit diff
path: root/pkgs/development/python-modules/plotly/default.nix
blob: 6a1993e1fd1781055e4af34c4c3ecb8be78df151 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib
, buildPythonPackage
, fetchPypi
, decorator
, nbformat
, pytz
, requests
, six
}:

buildPythonPackage rec {
  pname = "plotly";
  version = "2.7.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f7305816a423fd899da20919282445703118aeece19a54fb97be4cbf302341f8";
  };

  propagatedBuildInputs = [
    decorator
    nbformat
    pytz
    requests
    six
  ];

  # No tests in archive
  doCheck = false;

  meta = {
    description = "Python plotting library for collaborative, interactive, publication-quality graphs";
    homepage = https://plot.ly/python/;
    license = with lib.licenses; [ mit ];
  };
}