ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / retry_decorator / default.nix
blobc2f91c8fe1b16b24083476e4ed3a2ba037fb9852
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "retry_decorator";
8   version = "1.1.1";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "e1e8ad02e518fe11073f2ea7d80b6b8be19daa27a60a1838aff7c731ddcf2ebe";
13   };
15   meta = with lib; {
16     homepage = "https://github.com/pnpnpn/retry-decorator";
17     description = "Retry Decorator for python functions";
18     license = licenses.mit;
19   };