blob: d445157a3897c6340c2d81b6eb7e8abfde129a59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "py-lru-cache";
version = "0.1.4";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "py_lru_cache";
sha256 = "1w3a8l3ckl1zz0f2vlfrawl9a402r458p7xzhy4sgq8k9rl37pq2";
};
meta = {
description = "In-memory LRU cache for python";
homepage = "https://github.com/stucchio/Python-LRU-cache";
license = lib.licenses.gpl3;
maintainers = [ ];
};
}
|