nixpkgs/pkgs/shells/xonsh/default.nix

87 lines
2.2 KiB
Nix
Raw Permalink Normal View History

{ lib
, fetchFromGitHub
, python3Packages
, glibcLocales
, coreutils
, git
}:
2015-03-26 18:25:17 +00:00
python3Packages.buildPythonApplication rec {
2018-11-09 13:06:41 +00:00
pname = "xonsh";
version = "0.10.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
src = fetchFromGitHub {
owner = "xonsh";
repo = "xonsh";
rev = version;
sha256 = "03ahay2rl98a9k4pqkxksmj6mcg554jnbhw9jh8cyvjrygrpcpch";
};
2017-11-21 00:08:50 +00:00
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
substituteInPlace scripts/xon.sh \
--replace 'python' "${python3Packages.python}/bin/python"
'';
makeWrapperArgs = [
"--prefix PYTHONPATH : ${placeholder "out"}/lib/${python3Packages.python.libPrefix}/site-packages"
];
postInstall = ''
wrapProgram $out/bin/xon.sh \
$makeWrapperArgs
2015-03-26 18:25:17 +00:00
'';
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"
];
2019-04-14 18:27:13 +00:00
disabledTestPaths = [
# 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
checkInputs = [ glibcLocales git ] ++ (with python3Packages; [ pytestCheckHook pytest-subprocess ]);
2017-11-21 00:08:50 +00:00
propagatedBuildInputs = with python3Packages; [ 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;
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
}