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