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