1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "retry_decorator";
8 version = "1.1.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "b7723b83730a09a5a884f2d1c422c9556d20324b7a0f5b129ad94fd07baba36d";
13 };
14
15 meta = with stdenv.lib; {
16 homepage = https://github.com/pnpnpn/retry-decorator;
17 description = "Retry Decorator for python functions";
18 license = licenses.mit;
19 };
20
21}