14 buildPythonPackage rec {
17 format = "setuptools";
19 disabled = pythonOlder "3.7";
21 src = fetchFromGitHub {
25 hash = "sha256-WgtHhp7lE6StoOBfSy9+v3ODe/+zUC7lGrc2S4M68+M=";
28 propagatedBuildInputs = [
41 sed -i "/--cov/d" setup.cfg
44 disabledTests = lib.optionals stdenv.is32bit [
45 # test_compressed_complex is broken on 32-bit platforms
46 # this can be removed on the next version bump
47 # see also https://github.com/pinterest/pymemcache/pull/480
48 "test_compressed_complex"
51 pythonImportsCheck = [
56 description = "Python memcached client";
57 homepage = "https://pymemcache.readthedocs.io/";
58 license = with licenses; [ asl20 ];
59 maintainers = with maintainers; [ fab ];