[bug#54869,v2,6/7] gnu: python-vedo: Disable sanity check.
Commit Message
* gnu/packages/python-science.scm (python-vedo)[arguments]: Disable
sanity check.
---
gnu/packages/python-science.scm | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
--
2.35.1
@@ -884,7 +884,13 @@ (define-public python-vedo
(for-each (lambda (dir)
(with-directory-excursion dir
(invoke "./run_all.sh")))
- '("common" "dolfin")))))))))
+ '("common" "dolfin"))))))
+ ;; Disable the sanity check, which fails with the following error:
+ ;;
+ ;; ...checking requirements: ERROR: vedo==2021.0.3 DistributionNotFound(Requirement.parse('vtk'), {'vedo'})
+ ;;
+ ;; Probably it cannot find VTK because it isn't a Python library.
+ (delete 'sanity-check))))
(inputs ; for the check phase
(list fenics
python-matplotlib