summary refs log tree commit diff
path: root/pkgs/development/python-modules/retry_decorator/default.nix
blob: ea6a214691e828698a8485c8610c3ca3f28b9643 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "retry_decorator";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b7723b83730a09a5a884f2d1c422c9556d20324b7a0f5b129ad94fd07baba36d";
  };

  meta = with stdenv.lib; {
    homepage = "https://github.com/pnpnpn/retry-decorator";
    description = "Retry Decorator for python functions";
    license = licenses.mit;
  };

}