summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-05-17 12:42:16 +0200
committerGitHub <noreply@github.com>2017-05-17 12:42:16 +0200
commitfc2caec7565bb536b6208d1e9eaba6b674c1f69a (patch)
tree698afeeed9171f02d2fe1200e6b3c200bb4d0ff2 /pkgs
parent4d9ebd3c23773aa6130440fa78be682cdc15c4c1 (diff)
parente95cb5d58a605ccee7c80aa72b4f509f7a25e543 (diff)
downloadnixlib-fc2caec7565bb536b6208d1e9eaba6b674c1f69a.tar
nixlib-fc2caec7565bb536b6208d1e9eaba6b674c1f69a.tar.gz
nixlib-fc2caec7565bb536b6208d1e9eaba6b674c1f69a.tar.bz2
nixlib-fc2caec7565bb536b6208d1e9eaba6b674c1f69a.tar.lz
nixlib-fc2caec7565bb536b6208d1e9eaba6b674c1f69a.tar.xz
nixlib-fc2caec7565bb536b6208d1e9eaba6b674c1f69a.tar.zst
nixlib-fc2caec7565bb536b6208d1e9eaba6b674c1f69a.zip
Merge pull request #25850 from jluttine/cram-broken-on-i686
pythonPackages.cram: mark i686 broken
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/cram/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/cram/default.nix b/pkgs/development/python-modules/cram/default.nix
index 3ba861f1c874..4db709769a6e 100644
--- a/pkgs/development/python-modules/cram/default.nix
+++ b/pkgs/development/python-modules/cram/default.nix
@@ -1,4 +1,4 @@
-{lib, buildPythonPackage, fetchPypi, coverage, bash, which, writeText}:
+{stdenv, lib, buildPythonPackage, fetchPypi, coverage, bash, which, writeText}:
 
 buildPythonPackage rec {
   name = "${pname}-${version}";
@@ -34,5 +34,7 @@ buildPythonPackage rec {
     homepage = https://bitheap.org/cram/;
     license = lib.licenses.gpl2Plus;
     maintainers = with lib.maintainers; [ jluttine ];
+    # Tests fail on i686: https://hydra.nixos.org/build/52896671/nixlog/4
+    broken = stdenv.isi686;
   };
 }