1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "pylru";
5 version = "1.1.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "e03a3d354eb8fdfa11638698e8a1f06cd3b3a214ebc0a120c603a79290d9ebec";
10 };
11
12 meta = with lib; {
13 homepage = https://github.com/jlhutch/pylru;
14 description = "A least recently used (LRU) cache implementation";
15 license = licenses.gpl2;
16 maintainers = with maintainers; [ abbradar ];
17 };
18}