From 2c7ba2060d11445974a8fbcbe4043b66bcb7310e Mon Sep 17 00:00:00 2001 From: Kovacsics Robert Date: Tue, 18 Feb 2020 13:16:37 +0000 Subject: [PATCH] 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) --- pkgs/shells/xonsh/default.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix index 0e2490ff4341..2bc65164d582 100644 --- a/pkgs/shells/xonsh/default.nix +++ b/pkgs/shells/xonsh/default.nix @@ -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