Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / plotly / default.nix
blob0bec07c3bad2cb2c2f3322fbed79fba7e87521df
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pytz
5 , requests
6 , six
7 , tenacity
8 }:
10 buildPythonPackage rec {
11   pname = "plotly";
12   version = "5.20.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-v5AcgF0iAyz6U0sv98WqawZZ4DfxnsHgzKf1hZGLXIk=";
18   };
20   propagatedBuildInputs = [
21     pytz
22     requests
23     six
24     tenacity
25   ];
27   # No tests in archive
28   doCheck = false;
30   meta = with lib; {
31     description = "Python plotting library for collaborative, interactive, publication-quality graphs";
32     downloadPage = "https://github.com/plotly/plotly.py";
33     homepage = "https://plot.ly/python/";
34     license = with licenses; [ mit ];
35     maintainers = with maintainers; [ ];
36   };