about summary refs log tree commit diff
path: root/pkgs/development/python-modules/retry_decorator/default.nix
blob: c1e495f56a99915bd55b2db10637369f3d6496a9 (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.1";

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

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

}