about summary refs log tree commit diff
path: root/pkgs/development/python-modules/reretry/default.nix
blob: 15504e5dc7c356617e9c9f1bdc113552acf3c698 (plain) (blame)
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 = with lib; {
    description = "An easy to use retry decorator";
    homepage = "https://github.com/leshchenko1979/reretry";
    license = licenses.asl20;
    maintainers = with maintainers; [ renatoGarcia ];
  };
}