3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.cram: mark i686 broken

This commit is contained in:
Jaakko Luttinen 2017-05-17 09:38:34 +03:00
parent fb19aac85d
commit e95cb5d58a
No known key found for this signature in database
GPG key ID: 7B1CE13152E6B964

View file

@ -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;
};
}