1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "cachetools";
5 version = "2.1.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "90f1d559512fc073483fe573ef5ceb39bf6ad3d39edc98dc55178a2b2b176fa3";
10 };
11
12 meta = with stdenv.lib; {
13 description = "Extensible memoizing collections and decorators";
14 homepage = "https://github.com/tkem/cachetools";
15 license = licenses.mit;
16 };
17}