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