From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43838) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d45Ep-0007rp-Fi for guix-patches@gnu.org; Fri, 28 Apr 2017 08:43:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d45Em-0003zp-CT for guix-patches@gnu.org; Fri, 28 Apr 2017 08:43:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45538) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d45Em-0003zl-8Z for guix-patches@gnu.org; Fri, 28 Apr 2017 08:43:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d45Ek-0004KK-C0 for guix-patches@gnu.org; Fri, 28 Apr 2017 08:43:04 -0400 Subject: bug#26692: [PATCH] gnu: python-openid: Fix tests. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43769) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d45E9-0007rK-Vx for guix-patches@gnu.org; Fri, 28 Apr 2017 08:42:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d45E6-0003q4-U9 for guix-patches@gnu.org; Fri, 28 Apr 2017 08:42:26 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:33422) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d45E6-0003pW-NG for guix-patches@gnu.org; Fri, 28 Apr 2017 08:42:22 -0400 From: Danny Milosavljevic Date: Fri, 28 Apr 2017 14:42:19 +0200 Message-Id: <20170428124219.9609-1-dannym@scratchpost.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 26692@debbugs.gnu.org * gnu/packages/python.scm (python-openid)[arguments]: Replace 'check phase. [native-inputs]: Add python-defusedxml, python-psycopg2. --- gnu/packages/python.scm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index e51405bd9..bee656318 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -5523,6 +5523,17 @@ features useful for text console applications.") (base32 "1x3nh3fycqfn43jp5j5pb4q4y2jxp4mdka4absaa3bc0078qd758")))) (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + (substitute* "admin/runtests" + (("django_failures = django_tests..") "print('Disabled Django tests')")) + (zero? (system* "./admin/runtests"))))))) + (native-inputs + `(("python-defusedxml" ,python-defusedxml) + ("python-psycopg2" ,python-psycopg2))) (home-page "https://github.com/necaris/python3-openid") (synopsis "OpenID support for servers and consumers") (description "This library provides OpenID authentication for Python, both