diff options
author | Marius Bakke <marius@gnu.org> | 2022-02-18 21:33:29 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-02-19 10:43:22 +0100 |
commit | 76c30931ad5e9a2b3383c6e5315bb00e0c0aa3b6 (patch) | |
tree | 15ce3f44273d3d569025f120cca763ca12162c63 /gnu/packages | |
parent | 144d9232bdaedb8f5ca29218b2b0e27ca62ae048 (diff) |
gnu: python-gridmap: Disable sanity check.
* gnu/packages/python-xyz.scm (python-gridmap)[arguments]: Add #:phases.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 8424065a1d..517648ecf7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7936,7 +7936,10 @@ you to actually draw things with your favorite toolkit.") (base32 "0v0sgpg6pz8h61f9aqjf5xk0ipr512bbz8dxzjjylksj135qr19l")))) (build-system python-build-system) (arguments - '(#:tests? #f)) ; FIXME: Requires python-cherrypy. + '(#:tests? #f ;FIXME: Requires python-cherrypy. + #:phases (modify-phases %standard-phases + ;; Importing the web server module requires cherrypy, too. + (delete 'sanity-check)))) (propagated-inputs (list python-psutil python-drmaa python-pyzmq)) (home-page "https://github.com/pygridtools/gridmap") |