[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55060] [PATCH v4 2/8] gnu: python-meshio: Remove trailing booleans.
From: |
Paul A. Patience |
Subject: |
[bug#55060] [PATCH v4 2/8] gnu: python-meshio: Remove trailing booleans. |
Date: |
Mon, 02 May 2022 21:16:49 +0000 |
* gnu/packages/simulation.scm (python-meshio)[snippet]: Remove trailing
boolean (and therefore the 'begin').
[arguments]: Remove trailing boolean.
---
gnu/packages/simulation.scm | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/simulation.scm b/gnu/packages/simulation.scm
index c8309761d2..42383bf486 100644
--- a/gnu/packages/simulation.scm
+++ b/gnu/packages/simulation.scm
@@ -782,11 +782,9 @@ (define-public python-meshio
(base32
"0kv832s2vyff30zz8yqypw5jifwdanvh5x56d2bzkvy94h4jlddy"))
(snippet
- '(begin
- (let ((file (open-file "setup.py" "a")))
- (display "from setuptools import setup\nsetup()" file)
- (close-port file))
- #t))))
+ '(let ((file (open-file "setup.py" "a")))
+ (display "from setuptools import setup\nsetup()" file)
+ (close-port file)))))
(build-system python-build-system)
(inputs
(list python-h5py
@@ -802,8 +800,7 @@ (define-public python-meshio
(replace 'check
(lambda* (#:key outputs inputs #:allow-other-keys)
(add-installed-pythonpath inputs outputs)
- (invoke "python" "-m" "pytest" "-v" "tests")
- #t)))))
+ (invoke "python" "-m" "pytest" "-v" "tests"))))))
(home-page "https://github.com/nschloe/meshio")
(synopsis "I/O for mesh files")
(description "There are various file formats available for
--
2.36.0
- [bug#55060] [PATCH v4 0/8] gnu: Add python-pyvista., Paul A. Patience, 2022/05/02
- [bug#55060] [PATCH v4 1/8] gnu: python-meshio: Remove input labels., Paul A. Patience, 2022/05/02
- [bug#55060] [PATCH v4 2/8] gnu: python-meshio: Remove trailing booleans.,
Paul A. Patience <=
- [bug#55060] [PATCH v4 3/8] gnu: python-meshio: Honor #:tests? flag., Paul A. Patience, 2022/05/02
- [bug#55060] [PATCH v4 4/8] gnu: python-meshio: Update to 5.3.4., Paul A. Patience, 2022/05/02
- [bug#55060] [PATCH v4 5/8] gnu: Add python-pyperf., Paul A. Patience, 2022/05/02
- [bug#55060] [PATCH v4 6/8] gnu: Add python-pyvips., Paul A. Patience, 2022/05/02
- [bug#55060] [PATCH v4 7/8] gnu: Add python-scooby., Paul A. Patience, 2022/05/02
- [bug#55060] [PATCH v4 8/8] gnu: Add python-pyvista., Paul A. Patience, 2022/05/02
- bug#55060: [PATCH 0/6] gnu: Add python-pyvista., Ludovic Courtès, 2022/05/23