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:
parent
123f86d898
commit
46fce96881
|
@ -2577,9 +2577,12 @@ Songs can be searched by artist, name or even by a part of the song text.")
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'set-HOME
|
(add-after 'unpack 'set-HOME
|
||||||
(lambda _ (setenv "HOME" (string-append (getcwd) "/tmp"))))
|
(lambda _
|
||||||
|
(setenv "HOME" (string-append (getcwd) "/tmp"))
|
||||||
|
#t))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _ (zero? (system* "nosetests" "-v")))))))
|
(lambda _
|
||||||
|
(invoke "nosetests" "-v"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-beautifulsoup4" ,python-beautifulsoup4)
|
`(("python-beautifulsoup4" ,python-beautifulsoup4)
|
||||||
("python-flask" ,python-flask)
|
("python-flask" ,python-flask)
|
||||||
|
|
Loading…
Reference in New Issue