ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / plotly / default.nix
blobf150945a37cb63b6e578864395d378715fbe2e78
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytz
5 , requests
6 , six
7 , tenacity
8 }:
10 buildPythonPackage rec {
11   pname = "plotly";
12   version = "5.10.0";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-TTbZhZt6FTsnNWLe7tjCklh6Ry6x/VfNQVjsidne+ts=";
17   };
19   propagatedBuildInputs = [
20     pytz
21     requests
22     six
23     tenacity
24   ];
26   # No tests in archive
27   doCheck = false;
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   };