[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#70858] [PATCH python-team v2 10/32] gnu: python-openid: Remove pyth
From: |
Nicolas Graves |
Subject: |
[bug#70858] [PATCH python-team v2 10/32] gnu: python-openid: Remove python-coverage native-input. |
Date: |
Sat, 1 Jun 2024 17:36:42 +0200 |
* gnu/packages/python-web.scm (python-openid):
[native-inputs]: Remove python-coverage.
[arguments]<#:phases>: Rewrite check phase.
Change-Id: Id4ea5abc531f5fd84b60ff22407eb608f1e6ac29
---
gnu/packages/python-web.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index ffac7968e02..5e585d7b60d 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2338,17 +2338,18 @@ (define-public python-openid
"1bxf9a3ny1js422j962zfzl4a9dhj192pvai05whn7j0iy9gdyrk"))))
(build-system python-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "coverage" "run" "-m"
- "unittest" "openid.test.test_suite")))))))
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (if tests?
+ (invoke "python" "-m" "unittest" "openid.test.test_suite")
+ (format #t "test suite not run~%")))))))
(propagated-inputs
(list python-defusedxml))
(native-inputs
- (list python-coverage python-psycopg2 python-django))
+ (list python-psycopg2 python-django))
(home-page "https://github.com/necaris/python3-openid")
(synopsis "OpenID support for servers and consumers")
(description "This library provides OpenID authentication for Python, both
--
2.41.0
- [bug#70858] [PATCH python-team v2 00/32] Remove unwanted native-inputs., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 02/32] build-system/pyproject: Ignore unwanted pytest flags., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 01/32] guix: import: pypi: Ignore pypi-ignored-inputs., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 03/32] build-system/pyproject: Remove python-black input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 04/32] build-system/pyproject: Remove python-pylint native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 05/32] build-system/pyproject: Remove python-flake8 inputs., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 06/32] build-system/pyproject: Remove python-coverage input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 10/32] gnu: python-openid: Remove python-coverage native-input.,
Nicolas Graves <=
- [bug#70858] [PATCH python-team v2 11/32] build-system/pyproject: Remove python-coveralls native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 09/32] gnu: python-aiosqlite: Remove python-coverage native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 08/32] gnu: u-boot-tools: Remove python-coverage native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 16/32] build-system/pyproject: Remove python-codecov native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 12/32] build-system/pyproject: Remove python-pycodestyle native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 13/32] gnu: python-versioneer: Remove python-pycodestyle native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 14/32] gnu: python-versioneer: Remove python-pyflakes native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 17/32] build-system/pyproject: Remove python-tox native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 19/32] gnu: python-immutables: Remove python-mypy native-input., Nicolas Graves, 2024/06/01
- [bug#70858] [PATCH python-team v2 18/32] build-system/pyproject: Remove python-mypy native-input., Nicolas Graves, 2024/06/01