gnu: python2-ipaddr: Use INVOKE.

* gnu/packages/python-xyz.scm (python2-ipaddr)[arguments]: Unconditionally
return #T from "check" phase.
This commit is contained in:
Ricardo Wurmus 2019-01-23 17:20:12 +01:00
parent 35d79d6103
commit 40b8c4e34d
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -6279,8 +6279,7 @@ (define-public python2-ipaddr
#: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