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