[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55060] [PATCH v3 2/6] gnu: python-meshio: Remove trailing booleans.
From: |
Paul A. Patience |
Subject: |
[bug#55060] [PATCH v3 2/6] gnu: python-meshio: Remove trailing booleans. |
Date: |
Mon, 25 Apr 2022 17:55:38 +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.35.1
- [bug#55060] [PATCH v2 1/6] gnu: python-meshio: Remove input labels., (continued)
- [bug#55060] [PATCH v2 1/6] gnu: python-meshio: Remove input labels., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v2 2/6] gnu: python-meshio: Remove trailing booleans., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v2 3/6] gnu: python-meshio: Honor #:tests? flag., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v2 4/6] gnu: python-meshio: Update to 5.3.4., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v2 5/6] gnu: Add python-scooby., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v2 6/6] gnu: Add python-pyvista., Paul A. Patience, 2022/04/22
- [bug#55060] [PATCH v3 0/6] gnu: Add python-pyvista., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 1/6] gnu: python-meshio: Remove input labels., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 2/6] gnu: python-meshio: Remove trailing booleans.,
Paul A. Patience <=
- [bug#55060] [PATCH v3 4/6] gnu: python-meshio: Update to 5.3.4., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 3/6] gnu: python-meshio: Honor #:tests? flag., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 6/6] gnu: Add python-pyvista., Paul A. Patience, 2022/04/25
- [bug#55060] [PATCH v3 5/6] gnu: Add python-scooby., Paul A. Patience, 2022/04/25