2019-12-21 07:34:26 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, isPy27 }:
|
2017-09-13 01:54:52 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cachetools";
|
2019-12-19 20:31:07 +01:00
|
|
|
version = "4.0.0";
|
2017-09-13 01:54:52 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 20:31:07 +01:00
|
|
|
sha256 = "9a52dd97a85f257f4e4127f15818e71a0c7899f121b34591fcc1173ea79a0198";
|
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;
|
|
|
|
};
|
|
|
|
}
|