fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
mock,
|
|
nose,
|
|
plotly,
|
|
pytest,
|
|
requests,
|
|
retrying,
|
|
setuptools,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "chart-studio";
|
|
version = "5.22.0";
|
|
pyproject = true;
|
|
|
|
# chart-studio was split from plotly
|
|
src = fetchFromGitHub {
|
|
owner = "plotly";
|
|
repo = "plotly.py";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-cEm0vLQ4PAVxvplqK+yayxLpNCvyfZtjZva0Bl2Sdfs=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/packages/python/chart-studio";
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
plotly
|
|
requests
|
|
retrying
|
|
six
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
nose
|
|
pytest
|
|
];
|
|
# most tests talk to a service
|
|
checkPhase = ''
|
|
HOME=$TMPDIR pytest chart_studio/tests/test_core chart_studio/tests/test_plot_ly/test_api
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Utilities for interfacing with Plotly's Chart Studio service";
|
|
homepage = "https://github.com/plotly/plotly.py/tree/master/packages/python/chart-studio";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|