gnu: beets: Return #t from phases.

* gnu/packages/music.scm (beets)[arguments]: Substitute INVOKE for
SYSTEM* and return #t from all phases.
master
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
1 changed files with 5 additions and 2 deletions

View File

@ -2577,9 +2577,12 @@ Songs can be searched by artist, name or even by a part of the song text.")
`(#: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)