2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
2017-09-13 01:54:52 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cachetools";
|
2019-02-14 08:37:12 +01:00
|
|
|
version = "3.1.0";
|
2017-09-13 01:54:52 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-14 08:37:12 +01:00
|
|
|
sha256 = "9efcc9fab3b49ab833475702b55edd5ae07af1af7a4c627678980b45e459c460";
|
2017-09-13 01:54:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Extensible memoizing collections and decorators";
|
|
|
|
homepage = "https://github.com/tkem/cachetools";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|