gnu: python-meshio: Remove trailing booleans.
* gnu/packages/simulation.scm (python-meshio)[snippet]: Remove trailing boolean (and therefore the 'begin'). [arguments]: Remove trailing boolean. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
4a6acd04c3
commit
c76ba27662
1 changed files with 4 additions and 7 deletions
|
@ -785,11 +785,9 @@ river flooding.")
|
||||||
(base32
|
(base32
|
||||||
"0kv832s2vyff30zz8yqypw5jifwdanvh5x56d2bzkvy94h4jlddy"))
|
"0kv832s2vyff30zz8yqypw5jifwdanvh5x56d2bzkvy94h4jlddy"))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
'(let ((file (open-file "setup.py" "a")))
|
||||||
(let ((file (open-file "setup.py" "a")))
|
(display "from setuptools import setup\nsetup()" file)
|
||||||
(display "from setuptools import setup\nsetup()" file)
|
(close-port file)))))
|
||||||
(close-port file))
|
|
||||||
#t))))
|
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list python-h5py
|
(list python-h5py
|
||||||
|
@ -805,8 +803,7 @@ river flooding.")
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key outputs inputs #:allow-other-keys)
|
(lambda* (#:key outputs inputs #:allow-other-keys)
|
||||||
(add-installed-pythonpath inputs outputs)
|
(add-installed-pythonpath inputs outputs)
|
||||||
(invoke "python" "-m" "pytest" "-v" "tests")
|
(invoke "python" "-m" "pytest" "-v" "tests"))))))
|
||||||
#t)))))
|
|
||||||
(home-page "https://github.com/nschloe/meshio")
|
(home-page "https://github.com/nschloe/meshio")
|
||||||
(synopsis "I/O for mesh files")
|
(synopsis "I/O for mesh files")
|
||||||
(description "There are various file formats available for
|
(description "There are various file formats available for
|
||||||
|
|
Reference in a new issue