diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 17:20:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-23 18:13:30 +0100 |
commit | 40b8c4e34d2b311c8d8726bbc365baee6f29adb3 (patch) | |
tree | aa059ccf0eb9031f2c519f44be3a23382abd57d9 | |
parent | 35d79d6103765cf0f509dc4c905a402c4c21e980 (diff) |
gnu: python2-ipaddr: Use INVOKE.
* gnu/packages/python-xyz.scm (python2-ipaddr)[arguments]: Unconditionally
return #T from "check" phase.
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f020e1a62a..eaf1955f22 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -6279,8 +6279,7 @@ implementations of ASN.1-based codecs and protocols.") #:phases (modify-phases %standard-phases (replace 'check - (lambda* _ - (zero? (system* "python" "ipaddr_test.py"))))))) + (lambda _ (invoke "python" "ipaddr_test.py")))))) (home-page "https://github.com/google/ipaddr-py") (synopsis "IP address manipulation library") (description |