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