mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
9346d1373b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/xonsh/versions. These checks were done: - built on NixOS - ran ‘/nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3/bin/.xonsh-wrapped -h’ got 0 exit code - ran ‘/nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3/bin/.xonsh-wrapped --help’ got 0 exit code - ran ‘/nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3/bin/.xonsh-wrapped help’ got 0 exit code - ran ‘/nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3/bin/.xonsh-wrapped -V’ and found version 0.6.3 - ran ‘/nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3/bin/.xonsh-wrapped --version’ and found version 0.6.3 - ran ‘/nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3/bin/xonsh -h’ got 0 exit code - ran ‘/nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3/bin/xonsh --help’ got 0 exit code - ran ‘/nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3/bin/xonsh help’ got 0 exit code - ran ‘/nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3/bin/xonsh -V’ and found version 0.6.3 - ran ‘/nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3/bin/xonsh --version’ and found version 0.6.3 - found 0.6.3 with grep in /nix/store/prjh0vgnnn80ba9im4j9minjivsa8bj4-xonsh-0.6.3 - directory tree listing: https://gist.github.com/c4698aa16268961773b245a4b849a9f0 - du listing: https://gist.github.com/db7c65ccf5f4bf3c4457401c300d1862
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, python3Packages, glibcLocales, coreutils }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
name = "xonsh-${version}";
|
|
version = "0.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scopatz";
|
|
repo = "xonsh";
|
|
rev = version;
|
|
sha256= "1893kkxvalx8ycjl27gixkh979kkp4ra00zb7m6a8cdllx6yhsgi";
|
|
};
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
postPatch = ''
|
|
rm xonsh/winutils.py
|
|
|
|
sed -ie "s|/bin/ls|${coreutils}/bin/ls|" tests/test_execer.py
|
|
sed -ie 's|/usr/bin/env|${coreutils}/bin/env|' scripts/xon.sh
|
|
|
|
patchShebangs .
|
|
'';
|
|
|
|
checkPhase = ''
|
|
HOME=$TMPDIR XONSH_INTERACTIVE=0 \
|
|
pytest \
|
|
-k 'not test_man_completion and not test_printfile and not test_sourcefile and not test_printname ' \
|
|
tests
|
|
'';
|
|
|
|
checkInputs = with python3Packages; [ pytest glibcLocales ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ ply prompt_toolkit ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A Python-ish, BASHwards-compatible shell";
|
|
homepage = http://xon.sh/;
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ spwhitt garbas vrthra ];
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
passthru = {
|
|
shellPath = "/bin/xonsh";
|
|
};
|
|
}
|