Skip to content

Commit

Permalink
pythonPackages.chart-studio: init at 1.0.0
Browse files Browse the repository at this point in the history
ZHF #68361

(cherry picked from commit ceefed0)
Signed-off-by: Jonathan Ringer <jonringer117@gmail.com>
  • Loading branch information
Jonathan Ringer committed Oct 7, 2019
1 parent cc25b7a commit dbc6baa
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
44 changes: 44 additions & 0 deletions pkgs/development/python-modules/chart-studio/default.nix
@@ -0,0 +1,44 @@
{ lib, buildPythonPackage, fetchFromGitHub
, mock
, nose
, plotly
, pytest
, requests
, retrying
, six
}:

buildPythonPackage rec {
pname = "chart-studio";
version = "1.0.0";

# chart-studio was split from plotly
src = fetchFromGitHub {
owner = "plotly";
repo = "plotly.py";
rev = "${pname}-v${version}";
sha256 = "14lyqbjdffnlnkzlfnn60k7yxjd99vx3hfcs23apsiyinzipjlbf";
};

sourceRoot = "source/packages/python/chart-studio";

propagatedBuildInputs = [
plotly
requests
retrying
six
];

checkInputs = [ 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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -1776,6 +1776,8 @@ in {

characteristic = callPackage ../development/python-modules/characteristic { };

chart-studio = callPackage ../development/python-modules/chart-studio { };

cheetah = callPackage ../development/python-modules/cheetah { };

cherrypy = if isPy3k then
Expand Down

0 comments on commit dbc6baa

Please sign in to comment.