python39Packages.fastdiff: mark broken on 32bit

authored by

Sandro Jäckel and committed by
Martin Weinelt
3166c7c2 9e3b9853

+3 -1
+3 -1
pkgs/development/python-modules/fastdiff/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, wasmer, wasmer-compiler-cranelift, pytestCheckHook, pytest-benchmark }: 1 + { stdenv, lib, buildPythonPackage, fetchPypi, wasmer, wasmer-compiler-cranelift, pytestCheckHook, pytest-benchmark }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "fastdiff"; ··· 27 27 homepage = "https://github.com/syrusakbary/fastdiff"; 28 28 license = licenses.mit; 29 29 maintainers = with maintainers; [ SuperSandro2000 ]; 30 + # resulting compiled object panics at import 31 + broken = stdenv.is32bit; 30 32 }; 31 33 }