summaryrefslogtreecommitdiffstats
path: root/pkgs/shells
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-28 12:01:16 +0000
committerGitHub <noreply@github.com>2021-07-28 12:01:16 +0000
commita1d3be1d4226b7312ce6a8aa8e96a0cdbbf74243 (patch)
tree4df0a4239ef144053e491b8904ec194dc8e57d3d /pkgs/shells
parent86197a8023b233a84be08d43ac933688fcbd057e (diff)
parentd0796a6c6779bda9addfccc07f00565e8c9a897c (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/xonsh/default.nix41
1 files changed, 28 insertions, 13 deletions
diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix
index c73cb2872024..41f2c8b4f0ad 100644
--- a/pkgs/shells/xonsh/default.nix
+++ b/pkgs/shells/xonsh/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv
+{ lib
, fetchFromGitHub
, python3Packages
, glibcLocales
@@ -8,14 +8,14 @@
python3Packages.buildPythonApplication rec {
pname = "xonsh";
- version = "0.9.27";
+ version = "0.10.1";
# fetch from github because the pypi package ships incomplete tests
src = fetchFromGitHub {
- owner = "xonsh";
- repo = "xonsh";
- rev = version;
- sha256 = "09w6bl3qsygfs2ph2r423ndnbd74bzf67vp8587h2dkkfxlzjbad";
+ owner = "xonsh";
+ repo = "xonsh";
+ rev = version;
+ sha256 = "03ahay2rl98a9k4pqkxksmj6mcg554jnbhw9jh8cyvjrygrpcpch";
};
LC_ALL = "en_US.UTF-8";
@@ -31,15 +31,31 @@ python3Packages.buildPythonApplication rec {
patchShebangs .
'';
- doCheck = !stdenv.isDarwin;
+ disabledTests = [
+ # fails on sandbox
+ "test_colorize_file"
+ "test_loading_correctly"
+ "test_no_command_path_completion"
+ # fails on non-interactive shells
+ "test_capture_always"
+ "test_casting"
+ "test_command_pipeline_capture"
+ "test_dirty_working_directory"
+ "test_man_completion"
+ "test_vc_get_branch"
+ ];
- checkPhase = ''
- HOME=$TMPDIR pytest -k 'not test_repath_backslash and not test_os and not test_man_completion and not test_builtins and not test_main and not test_ptk_highlight and not test_pyghooks and not test_command_pipeline_capture and not test_git_dirty_working_directory_includes_untracked and not test_dirty_working_directory and not test_vc_get_branch'
- HOME=$TMPDIR pytest -k 'test_builtins or test_main' --reruns 5
- HOME=$TMPDIR pytest -k 'test_ptk_highlight'
+ disabledTestPaths = [
+ # fails on non-interactive shells
+ "tests/prompt/test_gitstatus.py"
+ "tests/completers/test_bash_completer.py"
+ ];
+
+ preCheck = ''
+ HOME=$TMPDIR
'';
- checkInputs = [ python3Packages.pytest python3Packages.pytest-rerunfailures glibcLocales git ];
+ checkInputs = [ glibcLocales git ] ++ (with python3Packages; [ pytestCheckHook pytest-subprocess ]);
propagatedBuildInputs = with python3Packages; [ ply prompt-toolkit pygments ];
@@ -49,7 +65,6 @@ python3Packages.buildPythonApplication rec {
changelog = "https://github.com/xonsh/xonsh/raw/${version}/CHANGELOG.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ spwhitt vrthra ];
- platforms = platforms.all;
};
passthru = {