9 buildPythonPackage rec {
12 format = "setuptools";
13 disabled = pythonOlder "3.6";
15 src = fetchFromGitHub {
18 rev = "refs/tags/${version}";
19 hash = "sha256-8jg+zfdIATvu/GSFvqHl4cNMu+s2IFWC22vPZ7Q3WYI=";
28 # requires set up local server
29 "tests/test_dynamodb_cache.py"
30 "tests/test_mongodb_cache.py"
33 pythonImportsCheck = [ "cachelib" ];
36 homepage = "https://github.com/pallets/cachelib";
37 description = "Collection of cache libraries in the same API interface";
38 license = licenses.bsd3;
39 maintainers = with maintainers; [ gebner ];