summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/chart-studio
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-01 20:38:58 -0700
committerJon <jonringer@users.noreply.github.com>2019-10-07 01:47:42 -0700
commitceefed0723ce291ff810bc8fdfff5fe154cb487b (patch)
tree64511f0d9dd3c86b63b3ed117f9cef333a1368bb /pkgs/development/python-modules/chart-studio
parentzncModules.fish: fix build (diff)
downloadnixpkgs-ceefed0723ce291ff810bc8fdfff5fe154cb487b.tar.gz
pythonPackages.chart-studio: init at 1.0.0
Diffstat (limited to 'pkgs/development/python-modules/chart-studio')
-rw-r--r--pkgs/development/python-modules/chart-studio/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/chart-studio/default.nix b/pkgs/development/python-modules/chart-studio/default.nix
new file mode 100644
index 000000000000..0eed42dc286e
--- /dev/null
+++ b/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 ];
+ };
+}