2019-12-21 06:34:26 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy27 }:
|
2017-09-13 00:54:52 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cachetools";
|
2020-06-06 07:47:00 +01:00
|
|
|
version = "4.1.0";
|
2017-09-13 00:54:52 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:00 +01:00
|
|
|
sha256 = "1d057645db16ca7fe1f3bd953558897603d6f0b9c51ed9d11eb4d071ec4e2aab";
|
2017-09-13 00:54:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Extensible memoizing collections and decorators";
|
|
|
|
homepage = "https://github.com/tkem/cachetools";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|