1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "cachetools";
5 version = "3.1.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "9efcc9fab3b49ab833475702b55edd5ae07af1af7a4c627678980b45e459c460";
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}