nixpkgs/pkgs/shells/xonsh/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
2.3 KiB
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, python3
, glibcLocales
, coreutils
, git
}:
2015-03-26 18:25:17 +00:00
python3.pkgs.buildPythonApplication rec {
2018-11-09 13:06:41 +00:00
pname = "xonsh";
2023-06-13 16:59:05 +00:00
version = "0.14.0";
format = "pyproject";
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
src = fetchFromGitHub {
owner = "xonsh";
repo = "xonsh";
2022-09-16 09:28:28 +00:00
rev = "refs/tags/${version}";
hash = "sha256-ZrPKKa/vl06QAjGr16ZzKF/DAByFHr6ze2WVOCa+wf8=";
};
env.LC_ALL = "en_US.UTF-8";
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
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
'';
nativeBuildInputs = with python3.pkgs; [
setuptools
wheel
];
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"
# 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"
];
2019-04-14 18:27:13 +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"
# fails on non-interactive shells
"tests/prompt/test_gitstatus.py"
"tests/completers/test_bash_completer.py"
];
preCheck = ''
HOME=$TMPDIR
'';
2015-03-26 18:25:17 +00:00
nativeCheckInputs = [ glibcLocales git ] ++
(with python3.pkgs; [ pip pyte pytestCheckHook pytest-mock pytest-subprocess ]);
2017-11-21 00:08:50 +00:00
propagatedBuildInputs = with python3.pkgs; [ ply prompt-toolkit pygments ];
2015-03-26 18:25:17 +00:00
meta = with lib; {
2015-03-26 18:25:17 +00:00
description = "A Python-ish, BASHwards-compatible shell";
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;
2023-05-05 12:34:05 +00:00
maintainers = with maintainers; [ vrthra ];
2015-03-26 18:25:17 +00:00
};
2016-05-14 13:03:37 +00:00
passthru = {
shellPath = "/bin/xonsh";
python = python3;
2016-05-14 13:03:37 +00:00
};
2015-03-26 18:25:17 +00:00
}