Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
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 pythonImportsCheck = [ "repoze.lru" ]; 16 17 meta = with lib; { 18 description = "A tiny LRU cache implementation and decorator"; 19 homepage = "http://www.repoze.org/"; 20 license = licenses.bsd0; 21 maintainers = with maintainers; [ domenkozar ]; 22 }; 23}