diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:54:14 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:21 +0100 |
commit | bc3af9e0ef3a8cc86f131af59571a049aca86fe2 (patch) | |
tree | c8f23529be0cccc55946e492f3262b565638afd6 | |
parent | c35e49ca03a1f211ffe0f0a697fd4c504149026a (diff) |
gnu: tuir: Move to pyproject-build-system.
* gnu/packages/syndication.scm (tuir):
[build-system]: Move to pyproject-build-system.
[arguments]<#:phases>: Replace 'check phase replacement.
<#:test-flags>: Ignore failing test.
Change-Id: If88f6c42769b096871bdd73af67d71930e39e399
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/syndication.scm | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm index ed284be26b..dbd4fb5a50 100644 --- a/gnu/packages/syndication.scm +++ b/gnu/packages/syndication.scm @@ -33,6 +33,7 @@ #:use-module (guix build-system glib-or-gtk) #:use-module (guix build-system gnu) #:use-module (guix build-system meson) + #:use-module (guix build-system pyproject) #:use-module (guix build-system python) #:use-module (gnu packages) #:use-module (gnu packages autotools) @@ -55,6 +56,7 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages pretty-print) #:use-module (gnu packages python) + #:use-module (gnu packages python-build) #:use-module (gnu packages python-check) #:use-module (gnu packages python-xyz) #:use-module (gnu packages python-web) @@ -459,16 +461,13 @@ a simple interface that makes it easy to organize and browse feeds.") (sha256 (base32 "06xb030ibphbrz4nsxm8mh3g60ld8xfp6kc3j6vi1k4ls5s4h79i")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (delete 'sanity-check) ; Tries to read environment variables. - (replace 'check - (lambda* (#:key tests? inputs outputs #:allow-other-keys) - (add-installed-pythonpath inputs outputs) - (when tests? - (invoke "pytest"))))))) + (list #:test-flags + '(list "-k" "not test_content_humanize_timestamp") + #:phases + #~(modify-phases %standard-phases + (delete 'sanity-check)))) ; Reads environment variables. (inputs (list python-beautifulsoup4 python-decorator python-kitchen python-requests python-six)) |