diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:37:19 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:37:19 +0100 |
commit | c988afda6f2cedb195ea205d8e59c31b5262777e (patch) | |
tree | e529cb4559080bb6d66e35089fdcff1eb3d6d506 /gnu | |
parent | 4fc898dad9cc22c3f5059c42c5fbdd7919205354 (diff) |
gnu: python-colorspacious: Use INVOKE.
* gnu/packages/python-xyz.scm (python-colorspacious)[arguments]:
Unconditionally return #T from "check" phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 89988822f8..85818c2a2e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -3231,7 +3231,7 @@ To address this and enable easy cycling over arbitrary @code{kwargs}, the (modify-phases %standard-phases (replace 'check (lambda _ - (zero? (system* "nosetests" "--all-modules" "-v" "colorspacious"))))))) + (invoke "nosetests" "--all-modules" "-v" "colorspacious")))))) (home-page "https://github.com/njsmith/colorspacious") (synopsis "Python library for colorspace conversions") (description "@code{colorspacious} is a Python library that lets you |