python312Packages.llm-gguf: init at 0.2 (#364926)
[NixPkgs.git] / pkgs / development / python-modules / reretry / default.nix
blob240a37a611ec3ed216aa1c0c90a91f1263d3e42c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "reretry";
9   version = "0.11.8";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-8nkfzr5RLqLx0VOih0d4UjqAZIYLWRzZCvwhqL7UMuM=";
15   };
17   meta = with lib; {
18     description = "Easy to use retry decorator";
19     homepage = "https://github.com/leshchenko1979/reretry";
20     license = licenses.asl20;
21     maintainers = with maintainers; [ renatoGarcia ];
22   };