Unverified Commit ff2d78ca authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #215078 from misuzu/pymemcache-fix

python310Packages.pymemcache: disable broken test on 32-bit platforms
parents 18f93c03 7ae6bfb6
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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;
  };
}