mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.cram: mark i686 broken
This commit is contained in:
parent
fb19aac85d
commit
e95cb5d58a
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue