xonsh: Fix broken tests

Pulls in a patch committed a couple of days after the 0.9.13 release
(the one here), to fix the tests.

(cherry picked from commit bf822c4caa96666d5ee1c20870229b9f6484e5cd)
This commit is contained in:
Kovacsics Robert 2020-02-18 13:16:37 +00:00 committed by Maximilian Bosch
parent b3a47c62fb
commit 2c7ba2060d
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E

View file

@ -1,4 +1,11 @@
{ stdenv, fetchFromGitHub, python3Packages, glibcLocales, coreutils, git }:
{ stdenv
, fetchFromGitHub
, fetchpatch
, python3Packages
, glibcLocales
, coreutils
, git
}:
python3Packages.buildPythonApplication rec {
pname = "xonsh";
@ -12,6 +19,14 @@ python3Packages.buildPythonApplication rec {
sha256 = "0nk6rjdkbxli510iwqspvray48kdxvbdmq1k8nxn14kqfpqzlbcv";
};
patches = [
(fetchpatch {
name = "fix-ptk-tests.patch";
url = "https://github.com/xonsh/xonsh/commit/ca7acecc968dcda7dd56c1f5d5b4df349c98d734.patch";
sha256 = "00nhbf9wzm6r86r9zq8mnhds30w6gdhkgsx5kpl0jppiz4ll96iw";
})
];
LC_ALL = "en_US.UTF-8";
postPatch = ''
sed -ie "s|/bin/ls|${coreutils}/bin/ls|" tests/test_execer.py