nixpkgs/pkgs/shells/xonsh/default.nix

59 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, stdenv
, 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";
2021-03-03 04:20:00 +00:00
version = "0.9.27";
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";
2018-11-09 13:06:41 +00:00
repo = "xonsh";
rev = version;
2021-03-03 04:20:00 +00:00
sha256 = "09w6bl3qsygfs2ph2r423ndnbd74bzf67vp8587h2dkkfxlzjbad";
};
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 .
2015-03-26 18:25:17 +00:00
'';
2019-04-14 18:27:13 +00:00
doCheck = !stdenv.isDarwin;
checkPhase = ''
2021-03-03 04:20:00 +00:00
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'
2019-04-14 18:27:13 +00:00
HOME=$TMPDIR pytest -k 'test_builtins or test_main' --reruns 5
HOME=$TMPDIR pytest -k 'test_ptk_highlight'
'';
2015-03-26 18:25:17 +00:00
2019-04-14 18:27:13 +00:00
checkInputs = [ python3Packages.pytest python3Packages.pytest-rerunfailures glibcLocales git ];
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
platforms = platforms.all;
};
2016-05-14 13:03:37 +00:00
passthru = {
shellPath = "/bin/xonsh";
};
2015-03-26 18:25:17 +00:00
}