1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "cachelib";
5 version = "0.1.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "47e95a67d68c729cbad63285a790a06f0e0d27d71624c6e44c1ec3456bb4476f";
10 };
11
12 meta = with stdenv.lib; {
13 homepage = "https://github.com/pallets/cachelib";
14 description = "Collection of cache libraries in the same API interface";
15 license = licenses.bsd3;
16 maintainers = with maintainers; [ gebner ];
17 };
18}