2021-07-24 04:20:00 +00:00
|
|
|
{ lib
|
2020-02-18 13:16:37 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, python3Packages
|
|
|
|
, glibcLocales
|
|
|
|
, coreutils
|
|
|
|
, git
|
|
|
|
}:
|
2015-03-26 18:25:17 +00:00
|
|
|
|
2016-02-19 12:12:11 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-11-09 13:06:41 +00:00
|
|
|
pname = "xonsh";
|
2022-08-12 04:20:00 +00:00
|
|
|
version = "0.13.1";
|
2015-03-26 18:25:17 +00:00
|
|
|
|
2018-11-09 13:06:41 +00:00
|
|
|
# fetch from github because the pypi package ships incomplete tests
|
2016-06-04 16:05:12 +00:00
|
|
|
src = fetchFromGitHub {
|
2021-07-24 04:20:00 +00:00
|
|
|
owner = "xonsh";
|
|
|
|
repo = "xonsh";
|
|
|
|
rev = version;
|
2022-08-12 04:20:00 +00:00
|
|
|
sha256 = "sha256-Q9FJXccpTW3nPUOCf5UD8ZWJW25QX8PNHHpsVYjesYE=";
|
2016-06-04 16:05:12 +00:00
|
|
|
};
|
|
|
|
|
2017-11-21 00:08:50 +00:00
|
|
|
LC_ALL = "en_US.UTF-8";
|
2020-08-26 04:20:00 +00:00
|
|
|
|
2017-11-21 00:08:50 +00:00
|
|
|
postPatch = ''
|
|
|
|
sed -ie "s|/bin/ls|${coreutils}/bin/ls|" tests/test_execer.py
|
2019-04-14 18:27:13 +00:00
|
|
|
sed -ie "s|SHELL=xonsh|SHELL=$out/bin/xonsh|" tests/test_integrations.py
|
2017-11-21 00:08:50 +00:00
|
|
|
|
2019-04-14 18:27:13 +00:00
|
|
|
sed -ie 's|/usr/bin/env|${coreutils}/bin/env|' tests/test_integrations.py
|
|
|
|
sed -ie 's|/usr/bin/env|${coreutils}/bin/env|' scripts/xon.sh
|
2020-03-14 04:32:20 +00:00
|
|
|
find scripts -name 'xonsh*' -exec sed -i -e "s|env -S|env|" {} \;
|
2019-04-14 18:27:13 +00:00
|
|
|
find -name "*.xsh" | xargs sed -ie 's|/usr/bin/env|${coreutils}/bin/env|'
|
2017-11-21 00:08:50 +00:00
|
|
|
patchShebangs .
|
2021-07-30 01:19:49 +00:00
|
|
|
|
|
|
|
substituteInPlace scripts/xon.sh \
|
|
|
|
--replace 'python' "${python3Packages.python}/bin/python"
|
|
|
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeWrapperArgs = [
|
|
|
|
"--prefix PYTHONPATH : ${placeholder "out"}/lib/${python3Packages.python.libPrefix}/site-packages"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2022-07-23 15:03:58 +00:00
|
|
|
wrapProgram $out/bin/xonsh \
|
2021-07-30 01:19:49 +00:00
|
|
|
$makeWrapperArgs
|
2015-03-26 18:25:17 +00:00
|
|
|
'';
|
|
|
|
|
2021-07-24 04:20:00 +00:00
|
|
|
disabledTests = [
|
|
|
|
# fails on sandbox
|
|
|
|
"test_colorize_file"
|
|
|
|
"test_loading_correctly"
|
|
|
|
"test_no_command_path_completion"
|
2022-07-23 15:03:58 +00:00
|
|
|
"test_bsd_man_page_completions"
|
|
|
|
"test_xonsh_activator"
|
2021-07-24 04:20:00 +00:00
|
|
|
# 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"
|
2022-07-23 15:03:58 +00:00
|
|
|
"test_bash_and_is_alias_is_only_functional_alias"
|
2021-07-24 04:20:00 +00:00
|
|
|
];
|
2019-04-14 18:27:13 +00:00
|
|
|
|
2021-07-24 04:20:00 +00:00
|
|
|
disabledTestPaths = [
|
2022-07-23 15:03:58 +00:00
|
|
|
# fails on sandbox
|
|
|
|
"tests/completers/test_command_completers.py"
|
|
|
|
"tests/test_ptk_highlight.py"
|
|
|
|
"tests/test_ptk_shell.py"
|
2021-07-24 04:20:00 +00:00
|
|
|
# fails on non-interactive shells
|
|
|
|
"tests/prompt/test_gitstatus.py"
|
|
|
|
"tests/completers/test_bash_completer.py"
|
|
|
|
];
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
HOME=$TMPDIR
|
2016-06-04 16:05:12 +00:00
|
|
|
'';
|
2015-03-26 18:25:17 +00:00
|
|
|
|
2021-11-27 19:19:26 +00:00
|
|
|
checkInputs = [ glibcLocales git ] ++
|
|
|
|
(with python3Packages; [ pyte pytestCheckHook pytest-mock pytest-subprocess ]);
|
2017-11-21 00:08:50 +00:00
|
|
|
|
2021-07-22 15:02:31 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [ ply prompt-toolkit pygments ];
|
2015-03-26 18:25:17 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-03-26 18:25:17 +00:00
|
|
|
description = "A Python-ish, BASHwards-compatible shell";
|
2020-03-25 09:20:00 +00:00
|
|
|
homepage = "https://xon.sh/";
|
2021-03-03 04:20:00 +00:00
|
|
|
changelog = "https://github.com/xonsh/xonsh/raw/${version}/CHANGELOG.rst";
|
2015-03-26 18:25:17 +00:00
|
|
|
license = licenses.bsd3;
|
2019-07-03 09:27:39 +00:00
|
|
|
maintainers = with maintainers; [ spwhitt vrthra ];
|
2015-03-26 18:25:17 +00:00
|
|
|
};
|
2016-05-14 13:03:37 +00:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/xonsh";
|
|
|
|
};
|
2015-03-26 18:25:17 +00:00
|
|
|
}
|