at 22.05-pre 469 B view raw
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "pylru"; 5 version = "1.2.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "492f934bb98dc6c8b2370c02c95c65516ddc08c8f64d27f70087eb038621d297"; 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}