2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv
|
2020-02-18 05:16:37 -08:00
|
|
|
, fetchFromGitHub
|
|
|
|
, python3Packages
|
|
|
|
, glibcLocales
|
|
|
|
, coreutils
|
|
|
|
, git
|
|
|
|
}:
|
2015-03-26 11:25:17 -07:00
|
|
|
|
2016-02-19 04:12:11 -08:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-11-09 05:06:41 -08:00
|
|
|
pname = "xonsh";
|
2020-10-15 21:20:00 -07:00
|
|
|
version = "0.9.24";
|
2015-03-26 11:25:17 -07:00
|
|
|
|
2018-11-09 05:06:41 -08:00
|
|
|
# fetch from github because the pypi package ships incomplete tests
|
2016-06-04 09:05:12 -07:00
|
|
|
src = fetchFromGitHub {
|
2019-07-13 11:33:04 -07:00
|
|
|
owner = "xonsh";
|
2018-11-09 05:06:41 -08:00
|
|
|
repo = "xonsh";
|
2020-03-13 21:32:20 -07:00
|
|
|
rev = version;
|
2020-10-15 21:20:00 -07:00
|
|
|
sha256 = "1nk7kbiv7jzmr6narsnr0nyzkhlc7xw3b2bksyq2j6nda67b9b3y";
|
2016-06-04 09:05:12 -07:00
|
|
|
};
|
|
|
|
|
2017-11-20 16:08:50 -08:00
|
|
|
LC_ALL = "en_US.UTF-8";
|
2020-08-25 21:20:00 -07:00
|
|
|
|
2017-11-20 16:08:50 -08:00
|
|
|
postPatch = ''
|
|
|
|
sed -ie "s|/bin/ls|${coreutils}/bin/ls|" tests/test_execer.py
|
2019-04-14 11:27:13 -07:00
|
|
|
sed -ie "s|SHELL=xonsh|SHELL=$out/bin/xonsh|" tests/test_integrations.py
|
2017-11-20 16:08:50 -08:00
|
|
|
|
2019-04-14 11:27:13 -07: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-13 21:32:20 -07:00
|
|
|
find scripts -name 'xonsh*' -exec sed -i -e "s|env -S|env|" {} \;
|
2019-04-14 11:27:13 -07:00
|
|
|
find -name "*.xsh" | xargs sed -ie 's|/usr/bin/env|${coreutils}/bin/env|'
|
2017-11-20 16:08:50 -08:00
|
|
|
patchShebangs .
|
2015-03-26 11:25:17 -07:00
|
|
|
'';
|
|
|
|
|
2019-04-14 11:27:13 -07:00
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
|
2016-06-04 09:05:12 -07:00
|
|
|
checkPhase = ''
|
2020-03-13 21:32:20 -07: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'
|
2019-04-14 11:27:13 -07:00
|
|
|
HOME=$TMPDIR pytest -k 'test_builtins or test_main' --reruns 5
|
|
|
|
HOME=$TMPDIR pytest -k 'test_ptk_highlight'
|
2016-06-04 09:05:12 -07:00
|
|
|
'';
|
2015-03-26 11:25:17 -07:00
|
|
|
|
2019-04-14 11:27:13 -07:00
|
|
|
checkInputs = [ python3Packages.pytest python3Packages.pytest-rerunfailures glibcLocales git ];
|
2017-11-20 16:08:50 -08:00
|
|
|
|
2018-11-03 19:03:40 -07:00
|
|
|
propagatedBuildInputs = with python3Packages; [ ply prompt_toolkit pygments ];
|
2015-03-26 11:25:17 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2015-03-26 11:25:17 -07:00
|
|
|
description = "A Python-ish, BASHwards-compatible shell";
|
2020-03-25 02:20:00 -07:00
|
|
|
homepage = "https://xon.sh/";
|
|
|
|
changelog = "https://github.com/xonsh/xonsh/releases/tag/${version}";
|
2015-03-26 11:25:17 -07:00
|
|
|
license = licenses.bsd3;
|
2019-07-03 02:27:39 -07:00
|
|
|
maintainers = with maintainers; [ spwhitt vrthra ];
|
2015-03-26 11:25:17 -07:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2016-05-14 06:03:37 -07:00
|
|
|
|
|
|
|
passthru = {
|
|
|
|
shellPath = "/bin/xonsh";
|
|
|
|
};
|
2015-03-26 11:25:17 -07:00
|
|
|
}
|