diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-09-27 22:53:32 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-09-27 22:53:32 -0400 |
commit | acdf8c1759936b984cdd3530f292e94d97e7cdf4 (patch) | |
tree | 31473f71511278ececc0da43dfc08d21a94210c7 | |
parent | 85d757b53d5ed0e796759373e67a2608766e70f7 (diff) | |
download | guix-acdf8c1759936b984cdd3530f292e94d97e7cdf4.tar.gz |
gnu: python-proto-match: Explicitly disable tests to fix build.
I previously thought this unnecessary, but attempting to build the package suggests otherwise. * gnu/packages/python-xyz.scm (python-proto-matcher)[tests?]: Set to #f.
-rw-r--r-- | gnu/packages/python-xyz.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 86b1cdc2b1..c19d9380d5 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5907,6 +5907,8 @@ convert between colorspaces like sRGB, XYZ, CIEL*a*b*, CIECAM02, CAM02-UCS, etc. (sha256 (base32 "1644x0hrl398ji3281n44ymfgc3cspzfagjckhqjn4nja5nlikxg")))) (build-system python-build-system) + (arguments + `(#:tests? #f)) ;no test suite (propagated-inputs `(("python-protobuf" ,python-protobuf) ("python-pyhamcrest" ,python-pyhamcrest))) |