Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 22 lines 464 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "repoze.lru"; 8 version = "0.7"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "0429a75e19380e4ed50c0694e26ac8819b4ea7851ee1fc7583c8572db80aff77"; 13 }; 14 15 meta = with lib; { 16 description = "A tiny LRU cache implementation and decorator"; 17 homepage = "http://www.repoze.org/"; 18 license = licenses.bsd0; 19 maintainers = with maintainers; [ domenkozar ]; 20 }; 21 22}