[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/07: gnu: beancount: Adjust package style.
From: |
guix-commits |
Subject: |
01/07: gnu: beancount: Adjust package style. |
Date: |
Tue, 19 Mar 2024 05:48:09 -0400 (EDT) |
sharlatan pushed a commit to branch master
in repository guix.
commit c8fdd007f9430be7310b37153c92252b78bdac17
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Fri Feb 2 22:08:31 2024 +0000
gnu: beancount: Adjust package style.
* gnu/packages/finance.scm (beancount) [arguments]: Use G-expressions.
<#:phases>: Remove trailing #f from lambda.
Change-Id: I3a248c0b233b0f4d73dcc01f269cfb0a12fe06ff
---
gnu/packages/finance.scm | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm
index e8491713bb..32c507cd85 100644
--- a/gnu/packages/finance.scm
+++ b/gnu/packages/finance.scm
@@ -1976,17 +1976,17 @@ that allows you to run services and through them access
the Bitcoin Cash network
(patches (search-patches "beancount-disable-googleapis-fonts.patch"))))
(build-system python-build-system)
(arguments
- `(#:tests? #f ; Says test is missing, not sure why
- #:phases
- (modify-phases %standard-phases
- ;; Not importing the googleapis package for now
- (add-after 'unpack 'ignore-googleapis
- (lambda _
- (substitute* "setup.py"
- (("'google-api-python-client',") ""))
- #t))
- ;; No module named 'google_auth_oauthlib'
- (delete 'sanity-check))))
+ (list
+ #:tests? #f ; Says test is missing, not sure why
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Not importing the googleapis package for now
+ (add-after 'unpack 'ignore-googleapis
+ (lambda _
+ (substitute* "setup.py"
+ (("'google-api-python-client',") ""))))
+ ;; No module named 'google_auth_oauthlib'
+ (delete 'sanity-check))))
(inputs
(list python-beautifulsoup4
python-bottle
- branch master updated (f12172612d -> 1db82acdfc), guix-commits, 2024/03/19
- 01/07: gnu: beancount: Adjust package style.,
guix-commits <=
- 04/07: gnu: Add python-markdown2., guix-commits, 2024/03/19
- 02/07: gnu: beancount: Enable sanity check., guix-commits, 2024/03/19
- 03/07: gnu: beancount: Enable tests., guix-commits, 2024/03/19
- 06/07: gnu: Add python-cheroot., guix-commits, 2024/03/19
- 07/07: gnu: Add fava., guix-commits, 2024/03/19
- 05/07: gnu: Add python-pypytools., guix-commits, 2024/03/19