1 { lib, buildPythonPackage, fetchFromGitHub
11 buildPythonPackage rec {
12 pname = "chart-studio";
15 # chart-studio was split from plotly
16 src = fetchFromGitHub {
19 rev = "${pname}-v${version}";
20 sha256 = "1q3j3ih5k0jhr8ilwffkfxp1nifpnjnx7862bzhxfg4d386hfg4i";
23 sourceRoot = "source/packages/python/chart-studio";
25 propagatedBuildInputs = [
32 checkInputs = [ mock nose pytest ];
33 # most tests talk to a service
35 HOME=$TMPDIR pytest chart_studio/tests/test_core chart_studio/tests/test_plot_ly/test_api
39 description = "Utilities for interfacing with Plotly's Chart Studio service";
40 homepage = "https://github.com/plotly/plotly.py/tree/master/packages/python/chart-studio";
41 license = with licenses; [ mit ];
42 maintainers = with maintainers; [ jonringer ];