4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
59 lines
1.8 KiB
Nix
59 lines
1.8 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
, glibcLocales
|
|
, coreutils
|
|
, git
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "xonsh";
|
|
version = "0.9.24";
|
|
|
|
# fetch from github because the pypi package ships incomplete tests
|
|
src = fetchFromGitHub {
|
|
owner = "xonsh";
|
|
repo = "xonsh";
|
|
rev = version;
|
|
sha256 = "1nk7kbiv7jzmr6narsnr0nyzkhlc7xw3b2bksyq2j6nda67b9b3y";
|
|
};
|
|
|
|
LC_ALL = "en_US.UTF-8";
|
|
|
|
postPatch = ''
|
|
sed -ie "s|/bin/ls|${coreutils}/bin/ls|" tests/test_execer.py
|
|
sed -ie "s|SHELL=xonsh|SHELL=$out/bin/xonsh|" tests/test_integrations.py
|
|
|
|
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|" {} \;
|
|
find -name "*.xsh" | xargs sed -ie 's|/usr/bin/env|${coreutils}/bin/env|'
|
|
patchShebangs .
|
|
'';
|
|
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
checkPhase = ''
|
|
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'
|
|
HOME=$TMPDIR pytest -k 'test_builtins or test_main' --reruns 5
|
|
HOME=$TMPDIR pytest -k 'test_ptk_highlight'
|
|
'';
|
|
|
|
checkInputs = [ python3Packages.pytest python3Packages.pytest-rerunfailures glibcLocales git ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ ply prompt_toolkit pygments ];
|
|
|
|
meta = with lib; {
|
|
description = "A Python-ish, BASHwards-compatible shell";
|
|
homepage = "https://xon.sh/";
|
|
changelog = "https://github.com/xonsh/xonsh/releases/tag/${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ spwhitt vrthra ];
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
passthru = {
|
|
shellPath = "/bin/xonsh";
|
|
};
|
|
}
|