diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-12-13 19:25:49 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-12-13 17:04:20 -0500 |
commit | e2816ac72d6225ecb5ab740b7313bfc28c9d7764 (patch) | |
tree | 7d655f56d13ae1005a6944c5993965136ec30b8f | |
parent | c8cd850c87f50b476dc87166e09207426efd8409 (diff) | |
download | patches-e2816ac72d6225ecb5ab740b7313bfc28c9d7764.tar patches-e2816ac72d6225ecb5ab740b7313bfc28c9d7764.tar.gz |
gnu: python-xcffib: Disable tests.
* gnu/packages/python.scm (python-xcffib, python2-xcffib)[arguments]:
Set #:tests? #f.
-rw-r--r-- | gnu/packages/python.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 6aee72cf70..bed8124b55 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4229,7 +4229,9 @@ a front-end for C compilers or analysis tools.") `(("python-cffi" ,python-cffi) ; used at run time ("python-six" ,python-six))) (arguments - `(#:phases + `(;; FIXME: Tests cannot load libxcb.so.1 + #:tests? #f + #:phases (modify-phases %standard-phases (add-after 'install 'install-doc (lambda* (#:key outputs #:allow-other-keys) |