summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2018-12-26 12:28:58 +0200
committerEfraim Flashner <efraim@flashner.co.il>2018-12-26 12:29:48 +0200
commit10275b7466853fce6d5b925f0267c20c304ba25a (patch)
tree9b4681b50e68442d65334b39a35e31bf3d3d9e38
parentfb4fcfab9d961726436d165252042a2e711bb6da (diff)
gnu: python-openid: Update to 3.1.0.
* gnu/packages/python-web.scm (python-openid): Update to 3.1.0. [arguments]: Update custom 'check phase. [native-inputs]: Add python-coverage.
-rw-r--r--gnu/packages/python-web.scm11
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a5b4b7578d4..84123253771 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -509,27 +509,28 @@ is Python’s.")
509(define-public python-openid 509(define-public python-openid
510 (package 510 (package
511 (name "python-openid") 511 (name "python-openid")
512 (version "3.0.10") 512 (version "3.1.0")
513 (source 513 (source
514 (origin 514 (origin
515 (method url-fetch) 515 (method url-fetch)
516 (uri (pypi-uri "python3-openid" version)) 516 (uri (pypi-uri "python3-openid" version))
517 (sha256 517 (sha256
518 (base32 518 (base32
519 "1x3nh3fycqfn43jp5j5pb4q4y2jxp4mdka4absaa3bc0078qd758")))) 519 "00l5hrjh19740w00b3fnsqldnla41wbr2rics09dl4kyd1fkd3b2"))))
520 (build-system python-build-system) 520 (build-system python-build-system)
521 (arguments 521 (arguments
522 `(#:phases 522 `(#:phases
523 (modify-phases %standard-phases 523 (modify-phases %standard-phases
524 (replace 'check 524 (replace 'check
525 (lambda _ 525 (lambda _
526 (invoke "./admin/runtests") 526 (invoke "coverage" "run" "-m"
527 #t))))) 527 "unittest" "openid.test.test_suite"))))))
528 (properties `((python2-variant . ,(delay python2-openid)))) 528 (properties `((python2-variant . ,(delay python2-openid))))
529 (propagated-inputs 529 (propagated-inputs
530 `(("python-defusedxml" ,python-defusedxml))) 530 `(("python-defusedxml" ,python-defusedxml)))
531 (native-inputs 531 (native-inputs
532 `(("python-psycopg2" ,python-psycopg2) 532 `(("python-coverage" ,python-coverage)
533 ("python-psycopg2" ,python-psycopg2)
533 ("python-django" ,python-django))) 534 ("python-django" ,python-django)))
534 (home-page "https://github.com/necaris/python3-openid") 535 (home-page "https://github.com/necaris/python3-openid")
535 (synopsis "OpenID support for servers and consumers") 536 (synopsis "OpenID support for servers and consumers")