nixpkgs/pkgs/development/python-modules/retry_decorator/default.nix
2018-12-03 16:50:35 +01:00

22 lines
436 B
Nix

{ 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;
};
}