diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-06-05 09:59:27 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-06-05 09:59:27 +0200 |
commit | 66ece08d05825aaa52404b43b5083a0895d284be (patch) | |
tree | 3103dbefcf63b49f4c8192689797acb22cf21a1e /gnu/packages/music.scm | |
parent | 8b71684a2086182528c16b5e21599013420ea84c (diff) | |
parent | 0ebef06dbe5e53025670a76ff98f05e8c093f013 (diff) | |
download | patches-66ece08d05825aaa52404b43b5083a0895d284be.tar patches-66ece08d05825aaa52404b43b5083a0895d284be.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/music.scm')
-rw-r--r-- | gnu/packages/music.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index a8b4527960..bc34efeb9f 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -2592,9 +2592,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) |