14 buildPythonPackage rec {
15 pname = "chart-studio";
19 # chart-studio was split from plotly
20 src = fetchFromGitHub {
23 rev = "refs/tags/v${version}";
24 hash = "sha256-i//LKTNmoIrusBnpfSGc9cDijPxg/dY/7fumV3kfTAY=";
27 sourceRoot = "${src.name}/packages/python/chart-studio";
33 propagatedBuildInputs = [
40 nativeCheckInputs = [ mock nose pytest ];
41 # most tests talk to a service
43 HOME=$TMPDIR pytest chart_studio/tests/test_core chart_studio/tests/test_plot_ly/test_api
47 description = "Utilities for interfacing with Plotly's Chart Studio service";
48 homepage = "https://github.com/plotly/plotly.py/tree/master/packages/python/chart-studio";
49 license = with licenses; [ mit ];
50 maintainers = with maintainers; [ jonringer ];