Skip to content

Commit

Permalink
python3Packages.chart-studio: nose -> pynose
Browse files Browse the repository at this point in the history
  • Loading branch information
pyrox0 committed May 12, 2024
1 parent 4f497de commit 5970a62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/development/python-modules/chart-studio/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, mock
, nose
, pynose
, plotly
, pytest
, requests
Expand Down Expand Up @@ -37,16 +37,16 @@ buildPythonPackage rec {
six
];

nativeCheckInputs = [ mock nose pytest ];
nativeCheckInputs = [ mock pynose 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; {
meta = {
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 ];
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ jonringer ];
};
}

0 comments on commit 5970a62

Please sign in to comment.