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