1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "reretry"; 5 version = "0.11.8"; 6 7 src = fetchPypi { 8 inherit pname version; 9 hash = "sha256-8nkfzr5RLqLx0VOih0d4UjqAZIYLWRzZCvwhqL7UMuM="; 10 }; 11 12 meta = with lib; { 13 description = "An easy to use retry decorator."; 14 homepage = "https://github.com/leshchenko1979/reretry"; 15 license = licenses.asl20; 16 maintainers = with maintainers; [ renatoGarcia ]; 17 }; 18}