Merge pull request #215078 from misuzu/pymemcache-fix

python310Packages.pymemcache: disable broken test on 32-bit platforms
This commit is contained in:
Martin Weinelt
2023-02-07 11:17:14 +00:00
committed by GitHub
@@ -42,6 +42,11 @@ buildPythonPackage rec {
disabledTests = [
# python-memcached is not available (last release in 2017)
"TestClientSocketConnect"
] ++ lib.optionals stdenv.is32bit [
# test_compressed_complex is broken on 32-bit platforms
# this can be removed on the next version bump
# see also https://github.com/pinterest/pymemcache/pull/480
"test_compressed_complex"
];
pythonImportsCheck = [
@@ -53,6 +58,5 @@ buildPythonPackage rec {
homepage = "https://pymemcache.readthedocs.io/";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
broken = stdenv.is32bit;
};
}