12 buildPythonPackage rec {
13 pname = "dogpile-cache";
15 disabled = pythonOlder "3.6";
18 pname = "dogpile.cache";
20 sha256 = "sha256-2ETou2OMxPVEpMiag039Nv6TVAC3GhbL10Tr37cg/U4=";
24 # Disable concurrency tests that often fail,
25 # probably some kind of timing issue.
27 # Failing tests. https://bitbucket.org/zzzeek/dogpile.cache/issues/116
28 rm tests/cache/test_memcached_backend.py
31 dontUseSetuptoolsCheck = true;
33 checkInputs = [ pytestCheckHook mock Mako ];
35 propagatedBuildInputs = [ decorator stevedore ];
38 description = "A caching front-end based on the Dogpile lock";
39 homepage = "https://bitbucket.org/zzzeek/dogpile.cache";
40 license = licenses.bsd3;
41 maintainers = with maintainers; [ ];