From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH] gnu: python-click: Fix test failure. Date: Wed, 11 Jan 2017 21:18:54 +0100 Message-ID: <20170111201854.26214-1-dannym@scratchpost.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54309) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cRPMN-000529-Fj for guix-devel@gnu.org; Wed, 11 Jan 2017 15:19:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cRPMJ-0000Fq-IU for guix-devel@gnu.org; Wed, 11 Jan 2017 15:19:03 -0500 Received: from dd1012.kasserver.com ([85.13.128.8]:36410) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cRPMJ-0000Ff-CI for guix-devel@gnu.org; Wed, 11 Jan 2017 15:18:59 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/python.scm (python-click)[arguments]: Fix test failure. --- gnu/packages/python.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 4dc284d03..2f1bd8315 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2383,6 +2383,8 @@ is used by the Requests library to verify HTTPS requests.") (modify-phases %standard-phases (add-after 'unpack 'fix-paths (lambda* (#:key inputs #:allow-other-keys) + ;; Causes test failure if present. + (delete-file "click/_winconsole.py") (let ((glibc (assoc-ref inputs ,(if (%current-target-system) "cross-libc" "libc")))) (substitute* "click/_unicodefun.py"