gnu: python-gridmap: Disable sanity check.

* gnu/packages/python-xyz.scm (python-gridmap)[arguments]: Add #:phases.
This commit is contained in:
Marius Bakke 2022-02-18 21:33:29 +01:00
parent 144d9232bd
commit 76c30931ad
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -7936,7 +7936,10 @@ (define-public python-gridmap
(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")