unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#26692: [PATCH] gnu: python-openid: Fix tests.
@ 2017-04-28 12:42 Danny Milosavljevic
  2017-04-28 12:52 ` bug#26692: [PATCH v2] gnu: python-openid: Fix package Danny Milosavljevic
  0 siblings, 1 reply; 3+ messages in thread
From: Danny Milosavljevic @ 2017-04-28 12:42 UTC (permalink / raw)
  To: 26692

* 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

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#26692: [PATCH v2] gnu: python-openid: Fix package.
  2017-04-28 12:42 bug#26692: [PATCH] gnu: python-openid: Fix tests Danny Milosavljevic
@ 2017-04-28 12:52 ` Danny Milosavljevic
  2017-04-28 14:30   ` Marius Bakke
  0 siblings, 1 reply; 3+ messages in thread
From: Danny Milosavljevic @ 2017-04-28 12:52 UTC (permalink / raw)
  To: 26692

* gnu/packages/python.scm (python-openid)[arguments]: Replace 'check phase.
[propagated-inputs]: Add python-defusedxml.
[native-inputs]: Add python-psycopg2.
---
 gnu/packages/python.scm | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index e51405bd9..313e69975 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5523,6 +5523,19 @@ 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")))))))
+    (propagated-inputs
+     `(("python-defusedxml" ,python-defusedxml)))
+    (native-inputs
+     `(("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

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#26692: [PATCH v2] gnu: python-openid: Fix package.
  2017-04-28 12:52 ` bug#26692: [PATCH v2] gnu: python-openid: Fix package Danny Milosavljevic
@ 2017-04-28 14:30   ` Marius Bakke
  0 siblings, 0 replies; 3+ messages in thread
From: Marius Bakke @ 2017-04-28 14:30 UTC (permalink / raw)
  To: Danny Milosavljevic, 26692

[-- Attachment #1: Type: text/plain, Size: 1485 bytes --]

Danny Milosavljevic <dannym@scratchpost.org> writes:

> * gnu/packages/python.scm (python-openid)[arguments]: Replace 'check phase.
> [propagated-inputs]: Add python-defusedxml.
> [native-inputs]: Add python-psycopg2.
> ---
>  gnu/packages/python.scm | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
>
> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
> index e51405bd9..313e69975 100644
> --- a/gnu/packages/python.scm
> +++ b/gnu/packages/python.scm
> @@ -5523,6 +5523,19 @@ 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')"))

Can you add a comment/TODO/FIXME here about why Django tests needs to be
disabled? Other than that looks OK.

> +            (zero? (system* "./admin/runtests")))))))
> +    (propagated-inputs
> +     `(("python-defusedxml" ,python-defusedxml)))
> +    (native-inputs
> +     `(("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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-04-28 14:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-28 12:42 bug#26692: [PATCH] gnu: python-openid: Fix tests Danny Milosavljevic
2017-04-28 12:52 ` bug#26692: [PATCH v2] gnu: python-openid: Fix package Danny Milosavljevic
2017-04-28 14:30   ` Marius Bakke

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).