My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/retry_decorator/default.nix

21 lines
428 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "retry_decorator";
version = "1.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "e1e8ad02e518fe11073f2ea7d80b6b8be19daa27a60a1838aff7c731ddcf2ebe";
};
meta = with lib; {
homepage = "https://github.com/pnpnpn/retry-decorator";
description = "Retry Decorator for python functions";
license = licenses.mit;
};
}