diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:51 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:18 +0100 |
commit | d72a436a29e320f1d78150dfffdda0344f470326 (patch) | |
tree | 8acdc0543ccffa0e495bd8c63564201936e60316 | |
parent | 82d4c987b75299be522bbee49366f704381b0dbf (diff) |
gnu: python-jaraco-packaging: Move to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-jaraco-packaging):
[build-system]: Move to pyproject-build-system.
[arguments]<#:test-flags>: Ignore failing tests.
Change-Id: Ied9d42afe9b8ae30d2a3587e4ead770c8153c3c1
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 13d223ac09..f27076e19c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12150,7 +12150,10 @@ module with a few extra procedures.") (sha256 (base32 "0zimrnkh33b9g8ffw11mjh6kvs54cy5gcjw1h5cl1r7dc833dmkm")))) - (build-system python-build-system) + (build-system pyproject-build-system) + (arguments + (list #:test-flags + '(list "-k" "not project and not test_revived_distribution"))) (propagated-inputs (list python-pytest python-pytest-checkdocs |