diff options
| author | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2021-08-29 20:50:08 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2021-09-05 15:00:36 +0200 |
| commit | 3166c7c29adcec9dbc8d985f7058d58d9b02beea (patch) | |
| tree | 5322d7ae8d7939fa96ff72e88bc9ac93d7f52c74 /pkgs/development/python-modules/fastdiff | |
| parent | 9e3b985316169038739ce85227ead27e828c0aea (diff) | |
python39Packages.fastdiff: mark broken on 32bit
Diffstat (limited to 'pkgs/development/python-modules/fastdiff')
| -rw-r--r-- | pkgs/development/python-modules/fastdiff/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/fastdiff/default.nix b/pkgs/development/python-modules/fastdiff/default.nix index 6d37e6884b69..a790f1623817 100644 --- a/pkgs/development/python-modules/fastdiff/default.nix +++ b/pkgs/development/python-modules/fastdiff/default.nix @@ -1,4 +1,4 @@ -{ lib, buildPythonPackage, fetchPypi, wasmer, wasmer-compiler-cranelift, pytestCheckHook, pytest-benchmark }: +{ stdenv, lib, buildPythonPackage, fetchPypi, wasmer, wasmer-compiler-cranelift, pytestCheckHook, pytest-benchmark }: buildPythonPackage rec { pname = "fastdiff"; @@ -27,5 +27,7 @@ buildPythonPackage rec { homepage = "https://github.com/syrusakbary/fastdiff"; license = licenses.mit; maintainers = with maintainers; [ SuperSandro2000 ]; + # resulting compiled object panics at import + broken = stdenv.is32bit; }; } |
