-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xonsh: fix wrapper, 0.17.0 -> 0.18.2 #325813
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,118 +1,24 @@ | ||
{ | ||
lib, | ||
callPackage, | ||
coreutils, | ||
fetchFromGitHub, | ||
git, | ||
gitUpdater, | ||
glibcLocales, | ||
python3Packages, | ||
python3, | ||
runCommand, | ||
# configurable options | ||
extraPackages ? (ps: [ ]), | ||
}: | ||
|
||
let | ||
|
||
argset = { | ||
pname = "xonsh"; | ||
version = "0.17.0"; | ||
pyproject = true; | ||
|
||
# PyPI package ships incomplete tests | ||
src = fetchFromGitHub { | ||
owner = "xonsh"; | ||
repo = "xonsh"; | ||
rev = "refs/tags/${argset.version}"; | ||
hash = "sha256-9sRY9aetWWXzCFfgdHCBCia48THIJcMxsYMnFR6Xa8A="; | ||
}; | ||
|
||
nativeBuildInputs = with python3Packages; [ | ||
setuptools | ||
wheel | ||
]; | ||
|
||
propagatedBuildInputs = (with python3Packages; [ | ||
ply | ||
prompt-toolkit | ||
pygments | ||
]); | ||
|
||
nativeCheckInputs = [ | ||
git | ||
glibcLocales | ||
] ++ (with python3Packages; [ | ||
pip | ||
pyte | ||
pytest-mock | ||
pytest-subprocess | ||
pytestCheckHook | ||
requests | ||
]); | ||
|
||
disabledTests = [ | ||
# fails on sandbox | ||
"test_colorize_file" | ||
"test_loading_correctly" | ||
"test_no_command_path_completion" | ||
"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" | ||
"test_bash_and_is_alias_is_only_functional_alias" | ||
"test_spec_modifier_alias_output_format" | ||
# flaky tests | ||
"test_script" | ||
"test_alias_stability" | ||
"test_alias_stability_exception" | ||
"test_complete_import" | ||
"test_subproc_output_format" | ||
]; | ||
|
||
disabledTestPaths = [ | ||
# 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" | ||
]; | ||
|
||
env.LC_ALL = "en_US.UTF-8"; | ||
|
||
postPatch = '' | ||
sed -ie 's|/bin/ls|${lib.getExe' coreutils "ls"}|' tests/test_execer.py | ||
sed -ie 's|SHELL=xonsh|SHELL=$out/bin/xonsh|' tests/test_integrations.py | ||
|
||
for script in tests/test_integrations.py scripts/xon.sh $(find -name "*.xsh"); do | ||
sed -ie 's|/usr/bin/env|${lib.getExe' coreutils "env"}|' $script | ||
done | ||
patchShebangs . | ||
''; | ||
|
||
preCheck = '' | ||
export HOME=$TMPDIR | ||
export PATH=$out/bin:$PATH | ||
''; | ||
|
||
passthru = { | ||
shellPath = "/bin/xonsh"; | ||
python = python3Packages.python; # To the wrapper | ||
wrapper = callPackage ./wrapper.nix { }; | ||
updateScript = gitUpdater { }; | ||
}; | ||
|
||
meta = { | ||
homepage = "https://xon.sh/"; | ||
description = "A Python-ish, BASHwards-compatible shell"; | ||
changelog = "https://github.com/xonsh/xonsh/raw/main/CHANGELOG.rst"; | ||
license = with lib.licenses; [ bsd3 ]; | ||
mainProgram = "xonsh"; | ||
maintainers = with lib.maintainers; [ samlukeyes123 ]; | ||
}; | ||
}; | ||
pythonEnv = python3.withPackages | ||
(ps: [ ps.xonsh ] ++ extraPackages ps); | ||
xonsh = python3.pkgs.xonsh; | ||
in | ||
python3Packages.buildPythonApplication argset | ||
runCommand | ||
"xonsh-${xonsh.version}" | ||
{ | ||
inherit (xonsh) pname version meta passthru; | ||
} | ||
'' | ||
mkdir -p $out/bin | ||
for bin in ${lib.getBin xonsh}/bin/*; do | ||
ln -s ${pythonEnv}/bin/$(basename "$bin") $out/bin/ | ||
done | ||
'' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
{ | ||
lib, | ||
coreutils, | ||
fetchFromGitHub, | ||
git, | ||
gitUpdater, | ||
glibcLocales, | ||
pythonPackages, | ||
}: | ||
|
||
let | ||
|
||
argset = { | ||
pname = "xonsh"; | ||
version = "0.18.2"; | ||
pyproject = true; | ||
|
||
# PyPI package ships incomplete tests | ||
src = fetchFromGitHub { | ||
owner = "xonsh"; | ||
repo = "xonsh"; | ||
rev = "refs/tags/${argset.version}"; | ||
hash = "sha256-iTdUu2yGixWwDJICDLfzRcwgGe+xlq2CvxUeSbmDiUU="; | ||
}; | ||
|
||
nativeBuildInputs = with pythonPackages; [ | ||
setuptools | ||
wheel | ||
]; | ||
|
||
propagatedBuildInputs = ( | ||
with pythonPackages; | ||
[ | ||
ply | ||
prompt-toolkit | ||
pygments | ||
] | ||
); | ||
|
||
nativeCheckInputs = | ||
[ | ||
git | ||
glibcLocales | ||
] | ||
++ (with pythonPackages; [ | ||
pip | ||
pyte | ||
pytest-mock | ||
pytest-subprocess | ||
pytestCheckHook | ||
requests | ||
]); | ||
|
||
disabledTests = [ | ||
# fails on sandbox | ||
"test_colorize_file" | ||
"test_loading_correctly" | ||
"test_no_command_path_completion" | ||
"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" | ||
"test_bash_and_is_alias_is_only_functional_alias" | ||
|
||
# flaky tests | ||
"test_script" | ||
"test_alias_stability" | ||
"test_alias_stability_exception" | ||
"test_complete_import" | ||
"test_subproc_output_format" | ||
|
||
# https://github.com/xonsh/xonsh/issues/5569 | ||
"test_spec_decorator_alias_output_format" | ||
]; | ||
|
||
disabledTestPaths = [ | ||
# fails on sandbox | ||
"tests/completers/test_command_completers.py" | ||
"tests/shell/test_ptk_highlight.py" | ||
# fails on non-interactive shells | ||
"tests/prompt/test_gitstatus.py" | ||
"tests/completers/test_bash_completer.py" | ||
]; | ||
|
||
# https://github.com/NixOS/nixpkgs/issues/248978 | ||
dontWrapPythonPrograms = true; | ||
|
||
env.LC_ALL = "en_US.UTF-8"; | ||
|
||
postPatch = '' | ||
sed -ie 's|/bin/ls|${lib.getExe' coreutils "ls"}|' tests/test_execer.py | ||
sed -ie 's|SHELL=xonsh|SHELL=$out/bin/xonsh|' tests/test_integrations.py | ||
|
||
for script in tests/test_integrations.py scripts/xon.sh $(find -name "*.xsh"); do | ||
sed -ie 's|/usr/bin/env|${lib.getExe' coreutils "env"}|' $script | ||
done | ||
patchShebangs . | ||
''; | ||
|
||
preCheck = '' | ||
export HOME=$TMPDIR | ||
export PATH=$out/bin:$PATH | ||
''; | ||
|
||
passthru = { | ||
shellPath = "/bin/xonsh"; | ||
python = pythonPackages.python; # To the wrapper | ||
wrapper = throw "The top-level xonsh package is now wrapped. Use it directly."; | ||
updateScript = gitUpdater { }; | ||
}; | ||
|
||
meta = { | ||
homepage = "https://xon.sh/"; | ||
description = "Python-ish, BASHwards-compatible shell"; | ||
changelog = "https://github.com/xonsh/xonsh/raw/main/CHANGELOG.rst"; | ||
license = with lib.licenses; [ bsd3 ]; | ||
mainProgram = "xonsh"; | ||
maintainers = with lib.maintainers; [ samlukeyes123 ]; | ||
}; | ||
}; | ||
in | ||
pythonPackages.buildPythonPackage argset | ||
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why the let-in instead of defining it directly?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Anderson has explained it in #305316 (comment), and I didn't change it.