gnu: beets: Return #t from phases.

* gnu/packages/music.scm (beets)[arguments]: Substitute INVOKE for
SYSTEM* and return #t from all phases.
This commit is contained in:
Tobias Geerinckx-Rice 2018-06-05 03:13:23 +02:00
parent 123f86d898
commit 46fce96881
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -2577,9 +2577,12 @@ (define-public beets
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'set-HOME
(lambda _ (setenv "HOME" (string-append (getcwd) "/tmp"))))
(lambda _
(setenv "HOME" (string-append (getcwd) "/tmp"))
#t))
(replace 'check
(lambda _ (zero? (system* "nosetests" "-v")))))))
(lambda _
(invoke "nosetests" "-v"))))))
(native-inputs
`(("python-beautifulsoup4" ,python-beautifulsoup4)
("python-flask" ,python-flask)