Merge pull request #215078 from misuzu/pymemcache-fix
python310Packages.pymemcache: disable broken test on 32-bit platforms
This commit is contained in:
commit
ff2d78ca0a
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue