python3Packages.pymemcache: mark broken on 32 bit

Tests fail in serialization/deserialization code.
This commit is contained in:
Martin Weinelt 2022-11-15 09:20:19 +01:00
parent 8db9c4ed3f
commit 335b2990e6
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -7,6 +7,7 @@
, pytestCheckHook
, pythonOlder
, zstd
, stdenv
}:
buildPythonPackage rec {
@ -52,5 +53,6 @@ buildPythonPackage rec {
homepage = "https://pymemcache.readthedocs.io/";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
broken = stdenv.is32bit;
};
}